🚨 The updated syntax is to use `bin/rails generate authentication`, not `bin/rails generate sessions`
@angeloc700Ай бұрын
Nice work - quick, thorough, and to the point! I'm coming back to rails after a several year hiatus, and boy, has it changed (seems like for the better)! Thanks for sharing!!
@julian_handpan5 ай бұрын
Finally! Something that make more sense than fight with JS...
@SupeRails4 ай бұрын
In what case are you fighting with JS on authentication?
@julian_handpan4 ай бұрын
@@SupeRails I mean make more sense, since everyone need auth. And JS keeps changing…
@SupeRails4 ай бұрын
To be clear, I do not recommend you to use this new Rails auth generator. Devise is way better!
@yoyobroker81075 ай бұрын
Hilarious thumbnail 😄 Great video 👍
@SupeRails4 ай бұрын
Thanks bro. Although it's a bit misleading. Devise is very good, and it's going nowhere any time soon!
Спасибо Ярослав за интересное и познавательное видео.
@SupeRails4 ай бұрын
все для вас, дорогі друзі :)
@idreesibrahim56422 ай бұрын
please use following command for now. "bin/rails generate authentication" sessions has swapped with authentication
@SupeRails2 ай бұрын
Right!!!
@hellomynameisbenjaminupton2 ай бұрын
Glad I found this comment.. Thanks
@indigotechtutorials5 ай бұрын
Loved this video and I appreciate the tips about using the main branch and getting access to this feature I wonder if there is a good tailwind template or that woudl be a good idea for a new gem
@SupeRails5 ай бұрын
There's a place for that! github.com/rails/tailwindcss-rails/issues/382
@MidSeasonGroup2 ай бұрын
@superails please revisit and expound on this built-in feature.
@RyanDewhurstАй бұрын
I get "User must exist" when I submit a view from one of my controllers. How do I associate the User to the POST params so that it knows to save my model to my User? In devise this is current_user.
@SupeRailsАй бұрын
hey Ryan! assuming you have "Task" model first, your database "task" model should have "user_id". run this in the console: add_user_to_tasks user:references & rails db:migrate in TasksController: def create @post = Task.new(task_params) + @post.user_id = current_user.id end
@RyanDewhurstАй бұрын
@@SupeRails Thank you!
@stpaquet5 ай бұрын
I like to reuse the same conventions as the ones used in Devise. So usually I will have current_user and same for the methods so that I can reuse other gems without any charge (Authorization or Access control for example)
@SupeRails5 ай бұрын
I also like the devise naming. But.... I don't recall of any other gems that rely on having methods like "current_user"...?
@stpaquet5 ай бұрын
@@SupeRails Pundit is one. Also many examples for Rolify are based on the Devise conventions (unlike Pundit, I do not think that they are enforcing the conventions)
@tofuman95265 ай бұрын
So what you do for oauth?
@stpaquet5 ай бұрын
@@tofuman9526 OAuth2 gem or doorkeeper.
@bradchellingworth597315 күн бұрын
Would like to know if there is any implementation for API only rails apps?
@haroldpepete5 ай бұрын
great video, do you think apart from basic authentication rails would implement oauth out of thee box?
@SupeRails4 ай бұрын
I really really doubt that
@Helisltu2 ай бұрын
Why storing session in cookies is better than storing in session?
@SupeRails2 ай бұрын
@@Helisltu this might explain www.rubanonrails.com/2/cookie-based-authentication-with-rails/20/secure-session#http-only-cookies
@Pablo-Herrero4 ай бұрын
Is there any good reason to do this? Is the Devise gem dead or troublesome in some way?
@SupeRails4 ай бұрын
No, I do not recommend to use this solution! Devise is perfectly good. I recommend Devise!
@hiphopheadninethree2 ай бұрын
Can you do video on how to handle email verification before allowing access to account
@SupeRails2 ай бұрын
@@hiphopheadninethree if you are using Devise, use Devise confirmable (Episode 41): superails.com/posts/ruby-on-rails-41-devise-confirmable-no-more-users-with-fake-emails If you are using this (rails 8 authentication), try this: railsbytes.com/public/templates/Xg8sMD !! Curently I do not recommend using Rails 8 native authentication in production. It is 💩 comparing to Devise
@mikopiko4 ай бұрын
Finally!
@SupeRails4 ай бұрын
I think we still need to wait a bit for this to be production-ready
@NoobCodeSaga5 ай бұрын
Great!
@tofuman95265 ай бұрын
What about OAuth implementation?
@SupeRails5 ай бұрын
Check out episode #103 Simple Omniauth without Devise. That's what I use for superails.com/