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

20 lines
408 B
Ruby
Raw Normal View History

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