ruby-on-rails – 不活动/空闲后自动注销

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 不活动/空闲后自动注销前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在rails应用程序中设置,如果任何用户空闲30分钟或特定的时间段,他应该自动注销.
任何一个可以给任何解决方案.我正在使用devise进行身份验证.任何帮助是赞赏.

解决方法

您应该使用 Timeoutable型号特征.

Timeoutable takes care of veryfing whether a user session has already expired or not. When a session expires after the configured time,the user will be asked for credentials again,it means,he/she will be redirected to the sign in page.

Options

Timeoutable adds the following options to devise_for:

  • +timeout_in+: the interval to timeout the user session without activity.

在你需要的模型中

devise :timeoutable
# along with :database_authenticatable,:registerable and other things.

另外,看一下config / initializers / devise.rb,你可以在那里配置超时值.

原文链接:https://www.f2er.com/ruby/273850.html

猜你在找的Ruby相关文章