Great video! It looks so modern and dynamic! Very good editing, and I love that you guys used Two different cameras for the tutorial. That added a very personal touch it was a good call. 👌
@uuidv517 сағат бұрын
Great video for basics on auth, for newbies note that he *does not cover sign up* , as it is not part of the authentication generator
@kalist8938Күн бұрын
Really cool video. Love Rails ❤️
@SteveHazelКүн бұрын
pretttttty niiiiiiice ! ...and ...i meeeeean ...this guy is mighty entertainin'
@carlitokiteКүн бұрын
Thanks Devise for so many years of great work, but it's time to move to a simplified and understandable alternative to complexe! Any simple migration guide/script from Devise to Rails 8 Auth ?
@danvictorlofranco670017 сағат бұрын
does rails 8 authentication have jwt support? Afaik it only has sessions based
@EmeraldHeart77 сағат бұрын
You can improve it with the current generator, i've make it on my own
@danvictorlofranco67004 сағат бұрын
@@EmeraldHeart7 I am planning to do it, but It still nice to have a jwt option in the generator. I found some guy did a pull request in rails github about it and I hope that it get approved
@WickedAyman21 сағат бұрын
Gotta say, tou're good man. Shut up and take my money (any course you make on rails)
@cloudagnostic5 сағат бұрын
Is devise still a thing?
@mooktakim22 сағат бұрын
I need to grow a mustache
@BockwurstweckenКүн бұрын
Isn't the session stored in the database so that it persists when the server is restarted?
@mattlevanКүн бұрын
Yes.
@MiguelPenicheКүн бұрын
I really want that mug but I currently can’t buy it in Mexico. If you want I can serve as storage for selling RoR merch here. 💡
@richardhulse9328Күн бұрын
Can you please breath, really hard to listen to and watch.
@1108penguinКүн бұрын
Not sure why but Current.user didn't work in my app. I had to implement current_user like this: helper_method :current_user def current_user if session = Session.find_by(id: cookies.signed[:session_id]) @current_user ||= session.user end end Why couldn't I use Current.user even after authenticating?