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