mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 14:38:07 +01:00
7 lines
165 B
Ruby
7 lines
165 B
Ruby
class DomainBlock < ApplicationRecord
|
|
validates :domain, presence: true, uniqueness: true
|
|
|
|
def self.blocked?(domain)
|
|
where(domain: domain).exists?
|
|
end
|
|
end
|