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

20 lines
408 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
result[:status] == 'success'
end
end
end