Rails:Sign out route not found
Appearance
Problem
Sign-out doesn't work any more. Logged error on sign_out is:
GET "/sign_out" Url/route not found: .../sign_out
Environment
- rails-7
Solution
Caused by upgrade to rails-turbo. Solution:
link_to 'Sign out', sign_out_path,
- method: :delete
+ data: { 'turbo-method': :delete }See also: https://stackoverflow.com/questions/70446101/ruby-on-rails-7-delete-method-not-working