mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-26 04:21:37 +01:00
Supply @instance variable in password reset instructions / password change mailer (#5215)
This commit is contained in:
parent
178f718a9b
commit
d5091387c6
1 changed files with 2 additions and 0 deletions
|
@ -18,6 +18,7 @@ class UserMailer < Devise::Mailer
|
|||
def reset_password_instructions(user, token, _opts = {})
|
||||
@resource = user
|
||||
@token = token
|
||||
@instance = Rails.configuration.x.local_domain
|
||||
|
||||
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
||||
mail to: @resource.email, subject: I18n.t('devise.mailer.reset_password_instructions.subject')
|
||||
|
@ -26,6 +27,7 @@ class UserMailer < Devise::Mailer
|
|||
|
||||
def password_change(user, _opts = {})
|
||||
@resource = user
|
||||
@instance = Rails.configuration.x.local_domain
|
||||
|
||||
I18n.with_locale(@resource.locale || I18n.default_locale) do
|
||||
mail to: @resource.email, subject: I18n.t('devise.mailer.password_change.subject')
|
||||
|
|
Loading…
Reference in a new issue