Remove unused scope Announcement.without_muted
(#28645)
This commit is contained in:
parent
9322396e58
commit
3e43cd095c
2 changed files with 0 additions and 17 deletions
|
@ -20,7 +20,6 @@
|
|||
class Announcement < ApplicationRecord
|
||||
scope :unpublished, -> { where(published: false) }
|
||||
scope :published, -> { where(published: true) }
|
||||
scope :without_muted, ->(account) { joins("LEFT OUTER JOIN announcement_mutes ON announcement_mutes.announcement_id = announcements.id AND announcement_mutes.account_id = #{account.id}").where(announcement_mutes: { id: nil }) }
|
||||
scope :chronological, -> { order(coalesced_chronology_timestamps.asc) }
|
||||
scope :reverse_chronological, -> { order(coalesced_chronology_timestamps.desc) }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue