Welcome to mirror list, hosted at ThFree Co, Russian Federation.

destroy_service.rb « emails « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d586b9dfe0c89efdf577882b4a93c1eda3d0aeeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Emails
  class DestroyService < ::Emails::BaseService
    def execute
      Email.find_by_email!(@email).destroy && update_secondary_emails!
    end

    private

    def update_secondary_emails!
      result = ::Users::UpdateService.new(@user).execute do |user|
        user.update_secondary_emails!
      end

      result[:status] == 'success'
    end
  end
end