gitlab-org--gitlab-foss/app/services/emails/destroy_service.rb

22 lines
475 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Emails
2017-06-19 08:51:46 -04:00
class DestroyService < ::Emails::BaseService
2017-10-01 11:07:26 -04:00
def execute(email)
email.destroy && update_secondary_emails!
2017-06-22 02:55:07 -04:00
end
private
def update_secondary_emails!
2017-09-27 05:48:33 -04:00
result = ::Users::UpdateService.new(@current_user, user: @user).execute do |user|
2017-06-22 02:55:07 -04:00
user.update_secondary_emails!
end
result[:status] == :success
end
end
end
Emails::DestroyService.prepend_if_ee('EE::Emails::DestroyService')