This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/models/domain_block.rb

12 lines
255 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-09 14:48:43 +02:00
class DomainBlock < ApplicationRecord
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, severity: :suspend).exists?
2016-10-09 14:48:43 +02:00
end
end