6 lines
185 B
Ruby
6 lines
185 B
Ruby
|
class EmailValidator < ActiveModel::EachValidator
|
||
|
def validate_each(record, attribute, value)
|
||
|
record.errors.add(attribute, :invalid) unless value =~ Devise.email_regexp
|
||
|
end
|
||
|
end
|