You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
768 B
22 lines
768 B
# frozen_string_literal: true |
|
|
|
# == Schema Information |
|
# |
|
# Table name: fasp_follow_recommendations |
|
# |
|
# id :bigint(8) not null, primary key |
|
# created_at :datetime not null |
|
# updated_at :datetime not null |
|
# recommended_account_id :bigint(8) not null |
|
# requesting_account_id :bigint(8) not null |
|
# |
|
class Fasp::FollowRecommendation < ApplicationRecord |
|
MAX_AGE = 1.day.freeze |
|
|
|
belongs_to :requesting_account, class_name: 'Account' |
|
belongs_to :recommended_account, class_name: 'Account' |
|
|
|
scope :outdated, -> { where(created_at: ...(MAX_AGE.ago)) } |
|
scope :for_account, ->(account) { where(requesting_account: account) } |
|
scope :newest_first, -> { order(created_at: :desc) } |
|
end
|
|
|