Fix follow recommendations for less used languages (#29017)
This commit is contained in:
parent
0c0d077276
commit
c4af668e5c
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ class AccountSummary < ApplicationRecord
|
|||
has_many :follow_recommendation_suppressions, primary_key: :account_id, foreign_key: :account_id, inverse_of: false
|
||||
|
||||
scope :safe, -> { where(sensitive: false) }
|
||||
scope :localized, ->(locale) { where(language: locale) }
|
||||
scope :localized, ->(locale) { order(Arel::Nodes::Case.new.when(arel_table[:language].eq(locale)).then(1).else(0).desc) }
|
||||
scope :filtered, -> { where.missing(:follow_recommendation_suppressions) }
|
||||
|
||||
def self.refresh
|
||||
|
|
Loading…
Reference in a new issue