Unable to sign out in a Rails app, using Devise gem, no route matches /users/sign_out

前端 未结 3 1873
醉酒成梦
醉酒成梦 2021-01-25 04:13

I know there are dozens of questions on different sites about this issue. I have tried a lot of things, and I still can\'t get the link with DELETE method to work.

I\'ve

3条回答
  •  青春惊慌失措
    2021-01-25 04:28

    This helper always works for me:

    link_to "Logout", destroy_user_session_path, :method => :delete
    

    Maybe you are not logged in properly? You could check with if current_user

提交回复
热议问题