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: b5301bf2b82aade740282a6358abc2a26445ccc9 (plain)
1
2
3
4
5
6
7
module Emails
  class ConfirmService < ::Emails::BaseService
    def execute(email)
      email.resend_confirmation_instructions
    end
  end
end