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

confirm_service.rb « emails « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ceff4e3cfa7c1dcb02a2f4ac6ca820a7c2d7283 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Emails
  class ConfirmService < ::Emails::BaseService
    def execute(email)
      email.resend_confirmation_instructions
    end
  end
end

Emails::ConfirmService.prepend_mod