mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Merge 889ffe0b76
into a50c8e951f
This commit is contained in:
commit
cb087301db
2 changed files with 2 additions and 1 deletions
|
@ -122,6 +122,7 @@ class Account < ApplicationRecord
|
|||
scope :silenced, -> { where.not(silenced_at: nil) }
|
||||
scope :suspended, -> { where.not(suspended_at: nil) }
|
||||
scope :sensitized, -> { where.not(sensitized_at: nil) }
|
||||
scope :migrated, -> { where.not(moved_to_account_id: nil) }
|
||||
scope :without_suspended, -> { where(suspended_at: nil) }
|
||||
scope :without_silenced, -> { where(silenced_at: nil) }
|
||||
scope :without_instance_actor, -> { where.not(id: INSTANCE_ACTOR_ID) }
|
||||
|
|
|
@ -92,7 +92,7 @@ class RelationshipFilter
|
|||
def status_scope(value)
|
||||
case value
|
||||
when 'moved'
|
||||
Account.where.not(moved_to_account_id: nil)
|
||||
Account.migrated
|
||||
when 'primary'
|
||||
Account.where(moved_to_account_id: nil)
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue