debian-mirror-gitlab/app/services/emails/destroy_service.rb

22 lines
475 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
module Emails
class DestroyService < ::Emails::BaseService
2018-03-17 18:26:18 +05:30
def execute(email)
email.destroy && update_secondary_emails!
2017-09-10 17:25:29 +05:30
end
private
def update_secondary_emails!
2018-03-17 18:26:18 +05:30
result = ::Users::UpdateService.new(@current_user, user: @user).execute do |user|
2017-09-10 17:25:29 +05:30
user.update_secondary_emails!
end
2020-04-22 19:07:51 +05:30
result[:status] == :success
2017-09-10 17:25:29 +05:30
end
end
end
2019-12-04 20:38:33 +05:30
Emails::DestroyService.prepend_if_ee('EE::Emails::DestroyService')