mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 17:53:41 +01:00
8 lines
165 B
Ruby
8 lines
165 B
Ruby
|
class DomainBlock < ApplicationRecord
|
||
|
validates :domain, presence: true, uniqueness: true
|
||
|
|
||
|
def self.blocked?(domain)
|
||
|
where(domain: domain).exists?
|
||
|
end
|
||
|
end
|