Add domain search/filter to the "Federation" (/admin/instances) page (#10071)
This commit is contained in:
parent
2f7f6af26a
commit
6840a77711
6 changed files with 25 additions and 4 deletions
|
@ -24,6 +24,8 @@ class DomainBlock < ApplicationRecord
|
|||
has_many :accounts, foreign_key: :domain, primary_key: :domain
|
||||
delegate :count, to: :accounts, prefix: true
|
||||
|
||||
scope :matches_domain, ->(value) { where(arel_table[:domain].matches("%#{value}%")) }
|
||||
|
||||
def self.blocked?(domain)
|
||||
where(domain: domain, severity: :suspend).exists?
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue