Rails for Beginners Part 16: Logging Out Users Discussion
Discussion for
Rails for Beginners Part 16: Logging Out Users
Could you provide a little excerpt of why button_to is better than link_to for Hotwire? Or a link to the specific video and time? I'm sure it would be useful.
You don't have any routes defined! why happens this :( ?
My guess is that when you put this route: "delete "logout", to: "sessions#destroy"" rails already knows where to go. And then in the button_to form you describe the route: "logout_path".
Hi! New begginers. You can use: rails routes, to see all routes or rails routes -c controller_name -E
Try it !