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: d10833e66cbab65418856f82a51233d0d60b5ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Emails
  class DestroyService < ::Emails::BaseService
    def execute(email)
      email.destroy && update_secondary_emails!(email.email)
    end

    private

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

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

Emails::DestroyService.prepend_mod_with('Emails::DestroyService')