3

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

4

1 回答 1

6

在用户模型上:

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

在 UserSession 模型上:

self.logout_on_timeout = true
于 2011-02-14T22:40:16.213 回答