internetee/registry

View on GitHub
app/interactions/domains/force_delete/set_force_delete.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Domains
  module ForceDelete
    class SetForceDelete < Base
      def execute
        compose(CheckDiscarded, inputs.to_h)
        compose(PrepareDomain, inputs.to_h)
        compose(SetStatus, inputs.to_h)
        compose(PostSetProcess, inputs.to_h)
        compose(NotifyRegistrar, inputs.to_h)
        compose(NotifyByEmail, inputs.to_h)
        compose(NotifyMultiyearsExpirationDomain, inputs.to_h)
      end
    end
  end
end