5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-01 22:36:08 +00:00

fix: enviar los correos de devise en el idioma de le usuarie #12952

This commit is contained in:
f 2023-04-04 11:33:51 -03:00
parent b15ebdf549
commit ea71aafe58

View file

@ -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!