add translations for reset password instructions email

This commit is contained in:
Alex Turchyn
2025-12-01 20:46:03 +02:00
committed by Pete Matsyburka
parent cb2f58c04c
commit 7a7d3c6ee3
3 changed files with 40 additions and 5 deletions
@@ -0,0 +1,9 @@
# frozen_string_literal: true
class DeviseMailerPreview < ActionMailer::Preview
def reset_password_instructions
user = User.first
user.send_reset_password_instructions
Devise::Mailer.reset_password_instructions(user, user.reset_password_token)
end
end