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.

22 lines
422 B

  1. # frozen_string_literal: true
  2. module SessionTrackingConcern
  3. extend ActiveSupport::Concern
  4. UPDATE_SIGN_IN_HOURS = 24
  5. included do
  6. before_action :set_session_activity
  7. end
  8. private
  9. def set_session_activity
  10. return unless session_needs_update?
  11. current_session.touch
  12. end
  13. def session_needs_update?
  14. !current_session.nil? && current_session.updated_at < UPDATE_SIGN_IN_HOURS.hours.ago
  15. end
  16. end