2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-09 12:48:43 +00:00
|
|
|
class DomainBlock < ApplicationRecord
|
2017-01-23 16:38:38 +00:00
|
|
|
enum severity: [:silence, :suspend]
|
|
|
|
|
2016-10-09 12:48:43 +00:00
|
|
|
validates :domain, presence: true, uniqueness: true
|
|
|
|
|
|
|
|
def self.blocked?(domain)
|
|
|
|
where(domain: domain).exists?
|
|
|
|
end
|
|
|
|
end
|