Notifications
You’re not receiving notifications from this thread.
Rails for Beginners Part 21: Reset Password Token Mailer Discussion
Need rails 6.1.0 and above to access user.signed_id
in case somene is having issues with that
Thank you for the tip! I was getting pretty frustrated since, with all the Rails "magic" going on, I usually have no idea where the source of any issue is :/
Hi,
I'm using Rails 6.1.4.1 and user.signed_id doesn't work:
irb(main):003:0> user.signed_id
(irb):3:in <main>': undefined local variable or method
user' for main:Object (NameError)
any ideas?
thanks
you should first sign user to the user you want to test. if you have one user you use `user= User.last' to use it.