mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08: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
|