1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-22 02:28:31 +09:00
YuruToot/app/models/domain_block.rb

8 lines
165 B
Ruby
Raw Normal View History

2016-10-09 21:48:43 +09:00
class DomainBlock < ApplicationRecord
validates :domain, presence: true, uniqueness: true
def self.blocked?(domain)
where(domain: domain).exists?
end
end