gitlab-org--gitlab-foss/app/services/emails/confirm_service.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
214 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Emails
class ConfirmService < ::Emails::BaseService
2017-10-01 11:07:26 -04:00
def execute(email)
email.resend_confirmation_instructions
end
end
end
Emails::ConfirmService.prepend_mod