mastodon/app/models/fasp/follow_recommendation.rb
2025-06-30 13:39:36 +00:00

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