Sha256: 1046a206713804e7dfce3747fdf687d456a35d41c09d4f32a182a9ef189612c0
Contents?: true
Size: 830 Bytes
Versions: 8
Compression:
Stored size: 830 Bytes
Contents
require 'devise/hooks/timeoutable' module Devise module Models # 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. # # Configuration: # # timeout: the time you want to timeout the user session without activity. module Timeoutable def self.included(base) base.extend ClassMethods end # Checks whether the user session has expired based on configured time. def timeout?(last_access) last_access && last_access <= self.class.timeout_in.ago end module ClassMethods Devise::Models.config(self, :timeout_in) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems