Browse Source

Update session activation time (fixes #5605) (#7408)

pull/4/head
ThibG 6 years ago
committed by Eugen Rochko
parent
commit
352bae8c3e
2 changed files with 23 additions and 0 deletions
  1. +1
    -0
      app/controllers/application_controller.rb
  2. +22
    -0
      app/controllers/concerns/session_tracking_concern.rb

+ 1
- 0
app/controllers/application_controller.rb View File

@ -9,6 +9,7 @@ class ApplicationController < ActionController::Base
include Localized
include UserTrackingConcern
include SessionTrackingConcern
helper_method :current_account
helper_method :current_session

+ 22
- 0
app/controllers/concerns/session_tracking_concern.rb View File

@ -0,0 +1,22 @@
# frozen_string_literal: true
module SessionTrackingConcern
extend ActiveSupport::Concern
UPDATE_SIGN_IN_HOURS = 24
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 < UPDATE_SIGN_IN_HOURS.hours.ago
end
end

Loading…
Cancel
Save