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