You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
438 B
23 lines
438 B
# frozen_string_literal: true |
|
|
|
module SessionTrackingConcern |
|
extend ActiveSupport::Concern |
|
|
|
SESSION_UPDATE_FREQUENCY = 24.hours.freeze |
|
|
|
included do |
|
before_action :set_session_activity |
|
end |
|
|
|
private |
|
|
|
def set_session_activity |
|
return unless session_needs_update? |
|
|
|
current_session.touch |
|
end |
|
|
|
def session_needs_update? |
|
!current_session.nil? && current_session.updated_at < SESSION_UPDATE_FREQUENCY.ago |
|
end |
|
end
|
|
|