mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 13:15:40 +02:00
Complete creation of interactors
This commit is contained in:
parent
4b980a07f5
commit
03754b542b
7 changed files with 78 additions and 17 deletions
|
@ -5,19 +5,21 @@ module Admin
|
|||
authorize! :manage, domain
|
||||
|
||||
domain.transaction do
|
||||
domain.schedule_force_delete(type: force_delete_type)
|
||||
domain.registrar.notifications.create!(text: t('force_delete_set_on_domain',
|
||||
domain_name: domain.name,
|
||||
outzone_date: domain.outzone_date,
|
||||
purge_date: domain.purge_date))
|
||||
|
||||
notify_by_email if notify_by_email?
|
||||
# domain.schedule_force_delete(type: force_delete_type)
|
||||
# domain.registrar.notifications.create!(text: t('force_delete_set_on_domain',
|
||||
# domain_name: domain.name,
|
||||
# outzone_date: domain.outzone_date,
|
||||
# purge_date: domain.purge_date)) # added to interactor
|
||||
#
|
||||
# notify_by_email if notify_by_email? # added to interactor
|
||||
Domain::ForceDelete::Base.call(domain: domain, type: force_delete_type)
|
||||
end
|
||||
|
||||
redirect_to edit_admin_domain_url(domain), notice: t('.scheduled')
|
||||
end
|
||||
|
||||
def notify_by_email
|
||||
# added to interactor
|
||||
if force_delete_type == :fast_track
|
||||
send_email
|
||||
domain.update(contact_notification_sent_date: Time.zone.today)
|
||||
|
@ -39,10 +41,12 @@ module Admin
|
|||
end
|
||||
|
||||
def notify_by_email?
|
||||
# added to interactor
|
||||
ActiveRecord::Type::Boolean.new.cast(params[:notify_by_email])
|
||||
end
|
||||
|
||||
def send_email
|
||||
# added to interactor
|
||||
DomainDeleteMailer.forced(domain: domain,
|
||||
registrar: domain.registrar,
|
||||
registrant: domain.registrant,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue