use set_reset_password_token

This commit is contained in:
Alex Turchyn
2025-12-02 01:16:42 +02:00
committed by Pete Matsyburka
parent 7a7d3c6ee3
commit 5934bdec55
@@ -3,7 +3,7 @@
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)
token = user.send(:set_reset_password_token)
Devise::Mailer.reset_password_instructions(user, token)
end
end