mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 05:33:43 +01:00
9 lines
196 B
Ruby
9 lines
196 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DomainBlock < ApplicationRecord
|
|
validates :domain, presence: true, uniqueness: true
|
|
|
|
def self.blocked?(domain)
|
|
where(domain: domain).exists?
|
|
end
|
|
end
|