使用 Devise 注销所有用户
我在 ruby-on-rails 应用程序中使用 devise。我有一个使用设备的 User 类和 AdminUser 类。在我的管理面板中,我想注销所有用户,但不注销管理员用户。
I'm using devise in my ruby-on-rails app. I have a User class and an AdminUser class using devise. In my admin panel I would like to logout all Users but not AdminUsers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
执行此操作的最佳方法是使用范围级别的注销方法。因此,如果您想注销所有用户(用户类),那么您可以这样做。
The best way to do this is to use the scope-level sign out methods. So, if you want to sign out all users (User class), then you would do this.
很晚,但答案可能是这样的
Very late, but the answer could be something like this
正如有人所说这里,最简单的方法是更改 Rails 秘密令牌。
As someone said here, the simplest way to do this is to change the rails secret token.
假设
您正在使用数据库身份验证。
and
Assuming you are using database authentication.