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