This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-04 06:16:10 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: email_domain_blocks
|
|
|
|
#
|
2017-11-12 07:18:50 -08:00
|
|
|
# id :bigint not null, primary key
|
2017-10-04 06:16:10 -07: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
|