Add Redis, Sidekiq to Docker Compose setup #110

Merged
raucao merged 5 commits from feature/docker-compose_sidekiq into master 2023-03-31 09:09:46 +00:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit d2987da70a - Show all commits

View File

@ -63,6 +63,10 @@ class User < ApplicationRecord
end
end
def send_devise_notification(notification, *args)
devise_mailer.send(notification, self, *args).deliver_later
end
def reset_password(new_password, new_password_confirmation)
self.password = new_password
self.password_confirmation = new_password_confirmation

View File

@ -1,3 +1,4 @@
:concurrency: 2
:queues:
- default
- mailers