2021-04-12 03:37:14 -07:00
|
|
|
# frozen_string_literal: true
|
2023-02-19 21:58:28 -08:00
|
|
|
|
2021-04-12 03:37:14 -07:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: account_summaries
|
|
|
|
#
|
|
|
|
# account_id :bigint(8) primary key
|
|
|
|
# language :string
|
|
|
|
# sensitive :boolean
|
|
|
|
#
|
|
|
|
|
|
|
|
class AccountSummary < ApplicationRecord
|
2024-02-06 01:08:07 -08:00
|
|
|
include DatabaseViewRecord
|
|
|
|
|
2021-04-12 03:37:14 -07:00
|
|
|
self.primary_key = :account_id
|
|
|
|
|
2024-02-06 01:08:07 -08:00
|
|
|
has_many :follow_recommendation_suppressions, primary_key: :account_id, foreign_key: :account_id, inverse_of: false, dependent: nil
|
2024-01-24 01:57:32 -08:00
|
|
|
|
2021-04-12 03:37:14 -07:00
|
|
|
scope :safe, -> { where(sensitive: false) }
|
2024-01-30 09:24:40 -08:00
|
|
|
scope :localized, ->(locale) { order(Arel::Nodes::Case.new.when(arel_table[:language].eq(locale)).then(1).else(0).desc) }
|
2024-01-24 01:57:32 -08:00
|
|
|
scope :filtered, -> { where.missing(:follow_recommendation_suppressions) }
|
2021-04-12 03:37:14 -07:00
|
|
|
end
|