mirror of
https://github.com/mastodon/mastodon.git
synced 2025-07-13 15:58:13 +00:00
23 lines
768 B
Ruby
23 lines
768 B
Ruby
# 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
|