demarches-normaliennes/app/models/trusted_device_token.rb
2024-08-22 09:26:48 +02:00

17 lines
341 B
Ruby

# frozen_string_literal: true
class TrustedDeviceToken < ApplicationRecord
LOGIN_TOKEN_VALIDITY = 1.week
LOGIN_TOKEN_YOUTH = 15.minutes
belongs_to :instructeur, optional: false
has_secure_token
def token_valid?
LOGIN_TOKEN_VALIDITY.ago < created_at
end
def token_young?
LOGIN_TOKEN_YOUTH.ago < created_at
end
end