cloudfoundry/cloud_controller_ng

View on GitHub
app/actions/domain_delete.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VCAP::CloudController
  class DomainDelete
    def delete(domains)
      domains.each do |domain|
        Domain.db.transaction do
          domain.destroy
        end
      end

      []
    end
  end
end