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.
2016-12-04 10:07:02 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
Rails.application.configure do
|
|
|
|
config.x.email_domains_blacklist = ENV.fetch('EMAIL_DOMAIN_BLACKLIST') { 'mvrht.com' }
|
2017-04-12 09:24:18 -07:00
|
|
|
config.x.email_domains_whitelist = ENV.fetch('EMAIL_DOMAIN_WHITELIST') { '' }
|
2016-12-04 10:07:02 -08:00
|
|
|
end
|