mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
da13fa5021
* rubocop: quit being so picky * rubocop: miscellany * rubocop: prefer present to blank
25 lines
503 B
Ruby
25 lines
503 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Expireable
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
scope :expired, -> { where.not(expires_at: nil).where('expires_at < ?', Time.now.utc) }
|
|
|
|
attr_reader :expires_in
|
|
|
|
def expires_in=(interval)
|
|
self.expires_at = interval.to_i.seconds.from_now if interval.present?
|
|
@expires_in = interval
|
|
end
|
|
|
|
def expire!
|
|
touch(:expires_at)
|
|
end
|
|
|
|
def expired?
|
|
!expires_at.nil? && expires_at < Time.now.utc
|
|
end
|
|
end
|
|
end
|