Devise::Models::Async

Protected Instance Methods

devise_pending_notifications() click to toggle source
# File lib/devise/async/model.rb, line 51
def devise_pending_notifications
  @devise_pending_notifications ||= []
end
send_devise_notification(notification, *args) click to toggle source

This method overwrites devise’s own `send_devise_notification` to capture all email notifications and enqueue it for background processing instead of sending it inline as devise does by default.

# File lib/devise/async/model.rb, line 27
def send_devise_notification(notification, *args)
  return super unless Devise::Async.enabled

  # If the record is dirty we keep pending notifications to be enqueued
  # by the callback and avoid before commit job processing.
  if changed?
    devise_pending_notifications << [ notification, args ]
  # If the record isn't dirty (aka has already been saved) enqueue right away
  # because the callback has already been triggered.
  else
    Devise::Async::Worker.enqueue(notification, self.class.name, self.id.to_s, *args)
  end
end
send_devise_pending_notifications() click to toggle source

Send all pending notifications.

# File lib/devise/async/model.rb, line 42
def send_devise_pending_notifications
  devise_pending_notifications.each do |notification, args|
    # Use `id.to_s` to avoid problems with mongoid 2.4.X ids being serialized
    # wrong with YAJL.
    Devise::Async::Worker.enqueue(notification, self.class.name, self.id.to_s, *args)
  end
  @devise_pending_notifications = []
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.