cartodb-4.29/config/initializers/email_address.rb

22 lines
544 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
EmailAddress::Config.configure(local_format: :conventional)
class EmailValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
return unless value
if value.is_a?(Array)
value.each { |v| validate_value(record, attribute, v) }
else
validate_value(record, attribute, value)
end
end
private
def validate_value(record, attribute, value)
unless EmailAddress.valid?(value)
record.errors[attribute] << (options[:message] || "#{value} is not a valid email")
end
end
end