0
0
Fork 0

Add domain search/filter to the "Federation" (/admin/instances) page (#10071)

This commit is contained in:
ThibG 2019-02-18 14:59:19 +01:00 committed by Eugen Rochko
parent 2f7f6af26a
commit 6840a77711
6 changed files with 25 additions and 4 deletions

View file

@ -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