Fix trending statuses returning more than one post by the same author (#19349)

這個提交存在於:
Eugen Rochko 2022-10-14 01:44:23 +02:00 提交者 GitHub
父節點 8a9d774a84
當前提交 f01310dadb
資料庫中找不到此簽署所對應的金鑰
GPG 金鑰 ID: 4AEE18F83AFDEB23

查看文件

@ -17,5 +17,5 @@ class StatusTrend < ApplicationRecord
belongs_to :status
belongs_to :account
scope :allowed, -> { where(allowed: true) }
scope :allowed, -> { joins('INNER JOIN (SELECT account_id, MAX(score) AS max_score FROM status_trends GROUP BY account_id) AS grouped_status_trends ON status_trends.account_id = grouped_status_trends.account_id AND status_trends.score = grouped_status_trends.max_score').where(allowed: true) }
end