18 lines
385 B
Ruby
18 lines
385 B
Ruby
class Access < ApplicationRecord
|
|
belongs_to :collection
|
|
belongs_to :user
|
|
|
|
enum :involvement, %i[ access_only watching everything ].index_by(&:itself)
|
|
|
|
scope :ordered_by_recently_accessed, -> { order(accessed_at: :desc) }
|
|
|
|
def accessed
|
|
touch :accessed_at unless recently_accessed?
|
|
end
|
|
|
|
private
|
|
def recently_accessed?
|
|
accessed_at&.> 5.minutes.ago
|
|
end
|
|
end
|