mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 16:28:08 +01:00
10 lines
323 B
Ruby
10 lines
323 B
Ruby
# frozen_string_literal: true
|
|
|
|
module AccessGrantExtension
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
scope :expired, -> { where.not(expires_in: nil).where('created_at + MAKE_INTERVAL(secs => expires_in) < NOW()') }
|
|
scope :revoked, -> { where.not(revoked_at: nil).where(revoked_at: ...Time.now.utc) }
|
|
end
|
|
end
|