This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-10-04 15:16:10 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: email_domain_blocks
|
|
|
|
#
|
2017-11-12 16:18:50 +01:00
|
|
|
# id :bigint not null, primary key
|
2017-10-04 15:16:10 +02:00
|
|
|
# domain :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
|
|
|
|
class EmailDomainBlock < ApplicationRecord
|
|
|
|
def self.block?(email)
|
|
|
|
domain = email.gsub(/.+@([^.]+)/, '\1')
|
|
|
|
where(domain: domain).exists?
|
|
|
|
end
|
|
|
|
end
|