2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Emails
|
|
|
|
class ConfirmService < ::Emails::BaseService
|
|
|
|
def execute(email)
|
|
|
|
email.resend_confirmation_instructions
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-03-02 08:16:31 +05:30
|
|
|
|
|
|
|
Emails::ConfirmService.prepend_mod
|