mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 15:31:43 +00:00
fix: enviar los correos de devise en el idioma de le usuarie #12952
This commit is contained in:
parent
b15ebdf549
commit
ea71aafe58
1 changed files with 6 additions and 0 deletions
|
@ -41,6 +41,12 @@ class Usuarie < ApplicationRecord
|
|||
lock_access! if attempts_exceeded? && !access_locked?
|
||||
end
|
||||
|
||||
def send_devise_notification(notification, *args)
|
||||
I18n.with_locale(lang) do
|
||||
devise_mailer.send(notification, self, *args).deliver_later
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def lang_from_locale!
|
||||
|
|
Loading…
Reference in a new issue