Fix some interaction calls

This commit is contained in:
Alex Sherman 2021-04-26 13:34:16 +05:00
parent 289d06e926
commit c6f0c3f6a7
9 changed files with 30 additions and 25 deletions

View file

@ -2,12 +2,12 @@ module Domains
module ForceDelete
class SetForceDelete < Base
def execute
compose(CheckDiscarded, inputs)
compose(PrepareDomain, inputs)
compose(SetStatus, inputs)
compose(PostSetProcess, inputs)
compose(NotifyRegistrar, inputs)
compose(NotifyByEmail, inputs)
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)
end
end
end