Commit 52846d4b authored by Stan Hu's avatar Stan Hu

Merge branch 'revert-3656b5db' into 'master'

Revert "Merge branch 'issues/15127' into 'master'"

This reverts merge request !3647


See merge request !4212
parents 3656b5db d46e47a5
......@@ -789,6 +789,11 @@ class User < ActiveRecord::Base
other.select(:id)])
end
# Added according to https://github.com/plataformatec/devise/blob/7df57d5081f9884849ca15e4fde179ef164a575f/README.md#activejob-integration
def send_devise_notification(notification, *args)
devise_mailer.send(notification, self, *args).deliver_later
end
def ensure_external_user_rights
return unless self.external?
......
Devise::Async.backend = :sidekiq
Devise::Async.queue = :mailers
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment