debian-mirror-gitlab/app/models/concerns/async_devise_email.rb

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

18 lines
535 B
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
module AsyncDeviseEmail
extend ActiveSupport::Concern
2022-07-23 23:45:48 +05:30
include AfterCommitQueue
2020-05-24 23:13:21 +05:30
private
# Added according to https://github.com/plataformatec/devise/blob/7df57d5081f9884849ca15e4fde179ef164a575f/README.md#activejob-integration
def send_devise_notification(notification, *args)
return true unless can?(:receive_notifications)
2022-07-23 23:45:48 +05:30
run_after_commit_or_now do
devise_mailer.__send__(notification, self, *args).deliver_later # rubocop:disable GitlabSecurity/PublicSend
end
2020-05-24 23:13:21 +05:30
end
end