summaryrefslogtreecommitdiff
path: root/app/models/concerns/async_devise_email.rb
blob: 38c99dc7e713dbaacc282a7d7cc43d4da23b0364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module AsyncDeviseEmail
  extend ActiveSupport::Concern

  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)

    devise_mailer.__send__(notification, self, *args).deliver_later # rubocop:disable GitlabSecurity/PublicSend
  end
end