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.

21 lines
469 B

  1. # frozen_string_literal: true
  2. module UserTrackingConcern
  3. extend ActiveSupport::Concern
  4. UPDATE_SIGN_IN_HOURS = 24
  5. included do
  6. before_action :update_user_sign_in
  7. end
  8. private
  9. def update_user_sign_in
  10. current_user.update_sign_in!(request) if user_needs_sign_in_update?
  11. end
  12. def user_needs_sign_in_update?
  13. user_signed_in? && (current_user.current_sign_in_at.nil? || current_user.current_sign_in_at < UPDATE_SIGN_IN_HOURS.hours.ago)
  14. end
  15. end