devise-async icon indicating copy to clipboard operation
devise-async copied to clipboard

Send Devise's emails in background. Supports Resque, Sidekiq, Delayed::Job and QueueClassic.

Results 12 devise-async issues
Sort by recently updated
recently updated
newest added

Hi guys, I haven't been using this gem in years now and would love someone with open source maintenance experience to help. Please make contact if you your interested.

Relaxed the gemspec to allow this to be used with Rails 4.2. Updated the travis matrix to test Rails 4.2 and 5.x

`Devise::Async.queue` was previously configurable when backends could be configured, and this PR brings that feature back. ActionMailer lets us choose what queue to use on each call to [`#deliver_later`](https://api.rubyonrails.org/classes/ActionMailer/MessageDelivery.html#method-i-deliver_later), and...

I can clearly see after_commit being used in the code: ``` ruby after_commit :send_devise_pending_notifications ``` Yet, ActiveRecord::RecordNotFound still happens from time to time. Any ideas how to fix it, @mperham?

The reset password instructions generate a token, after that token is generated a commit happened so the method send_devise_pending_notifications is called and the list of pending notifications is empty. After...

Adding devise-async to our user model leads to generation of wrong SQL when devise does an auto update on login for request specs. For more details see: https://github.com/rails/rails/issues/26038 http://stackoverflow.com/questions/38635739/request-spec-order-dependent-failure-wrong-sql-created-for-devise-user-update-o A...

Im using rspec for testing, rails 4.2.1 devise 3.5.3 user.send_confirmation_instructions is returning: ``` NoMethodError: undefined method `devise_mailer' for nil:NilClass ``` ``` sidekiq.yml --- :concurrency: 5 :pidfile: tmp/pids/sidekiq.pid staging: :concurrency: 10...

` 1) Failure: Model#test_0004_triggers the enqueued notifications on save [/home/abhi/ruby-devise-async/test/devise/async/model_test.rb:50]: Expected: 1 Actual: 2 2) Failure: Model#test_0003_accumulates notifications to be sent after commit when Model has been changed [/home/abhi/ruby-devise-async/test/devise/async/model_test.rb:32]: Expected:...

Here's a situation I am facing. It's very specific to my app, but I'm pretty sure has a root cause in devise-async. I sometimes remind users who haven't confirmed their...

Hi! I have a problem with changing the ActionMailer::Base.default_url_options = {:host => host} on runtime. My environment ``` rails (4.2.0) sidekiq (3.3.1) devise (3.4.1) devise-async (0.9.0) ``` I have a...