使用 Devise 注销所有用户

发布于 2024-12-13 12:40:08 字数 99 浏览 0 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

苍暮颜 2024-12-20 12:40:08

执行此操作的最佳方法是使用范围级别的注销方法。因此,如果您想注销所有用户(用户类),那么您可以这样做。

sign_out :user

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.

sign_out :user
妞丶爷亲个 2024-12-20 12:40:08

很晚,但答案可能是这样的

for user in User.all
  sign_out user
end

Very late, but the answer could be something like this

for user in User.all
  sign_out user
end
一片旧的回忆 2024-12-20 12:40:08

正如有人所说这里,最简单的方法是更改​​ Rails 秘密令牌。

As someone said here, the simplest way to do this is to change the rails secret token.

农村范ル 2024-12-20 12:40:08
@users = User.all
@users.log_out

假设

def log_out
  # depending on how you store the user's token, just delete it from the database
end

您正在使用数据库身份验证。

@users = User.all
@users.log_out

and

def log_out
  # depending on how you store the user's token, just delete it from the database
end

Assuming you are using database authentication.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文