Rails - How To Destroy Users Created Under Devise?

后端 未结 5 1480
北海茫月
北海茫月 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:44

    Or from rails c you can do something like this where "x" is user id.

    user = User.where(id: x)
    user.destroy(1) 
    

提交回复
热议问题