Sha256: 24984baae06bb35ec912054eba9d12b65c0eb1cbd19777007b54c2f4ccc6365c
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
module Actions module Katello module Organization class ManifestDelete < Actions::AbstractAsyncTask middleware.use Actions::Middleware::PropagateCandlepinErrors include Helpers::Notifications def plan(organization) action_subject(organization) sequence do plan_action(Candlepin::Owner::DestroyImports, { label: organization.label }) repositories = ::Katello::Repository.in_default_view.in_product(::Katello::Product.redhat.in_org(organization)) repositories.each do |repo| plan_action(Katello::Repository::RefreshRepository, repo) end plan_self end end def failure_notification(plan) ::Katello::UINotifications::Subscriptions::ManifestDeleteError.deliver!( :subject => subject_organization, :task => get_foreman_task(plan) ) end def success_notification(_plan) ::Katello::UINotifications::Subscriptions::ManifestDeleteSuccess.deliver!( subject_organization ) end def humanized_name _("Delete Manifest") end def finalize subject_organization.audit_manifest_action(_('Manifest deleted')) end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems