Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序中使用 Authlogic gem,我需要用户在 15 分钟不活动后自动注销。有人可以告诉我该怎么做吗?
在用户模型上:
acts_as_authentic do |c| c.logged_in_timeout(5.minutes) end
在 UserSession 模型上:
self.logout_on_timeout = true