Authlogic 超时自动注销

发布于 2024-10-17 04:20:25 字数 69 浏览 5 评论 0原文

我在我的应用程序中使用 Authlogic gem,并且我需要用户在 15 分钟不活动后自动注销。有人可以告诉我该怎么做吗?

I am using the Authlogic gem in my application, and I need users to be logged out automatically after 15 minutes of inactivity. Can somebody tell me how to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

扬花落满肩 2024-10-24 04:20:25

在 User 模型上:

acts_as_authentic do |c|
  c.logged_in_timeout(5.minutes)
end

在 UserSession 模型上:

self.logout_on_timeout = true

On User model:

acts_as_authentic do |c|
  c.logged_in_timeout(5.minutes)
end

on UserSession model:

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