Rails - How To Destroy Users Created Under Devise?

后端 未结 5 1479
北海茫月
北海茫月 2020-12-15 07:13

For my application, I have user accounts that people can sign up. I use the devise gem for the setup.

I also have a users page that lists out all the u

5条回答
  •  既然无缘
    2020-12-15 07:33

    According to devise 4.1 rake routes and views, using the following will help you delete the account once logged in as a user.

    <%= link_to "Cancel my account", registration_path(current_user), data: { confirm: "Are you sure?" }, method: :delete %>
    

提交回复
热议问题