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

前端 未结 3 1816
醉酒成梦
醉酒成梦 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:38

    Can we see your routes file?

    Specifically the devise_for call

    You could also try setting the path explicitly

    devise_for :users, path_names: { sign_out: 'sign_out' }

提交回复
热议问题