Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ttl_expirable.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1c2147beeddae3dde8cd899d8d2b36ad403821d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module TtlExpirable
  extend ActiveSupport::Concern

  included do
    validates :status, presence: true
    default_value_for :read_at, Time.zone.now

    enum status: { default: 0, pending_destruction: 1, processing: 2, error: 3 }

    scope :read_before, ->(number_of_days) { where("read_at <= ?", Time.zone.now - number_of_days.days) }
    scope :active, -> { where(status: :default) }
  end

  def read!
    self.update(read_at: Time.zone.now)
  end
end