720ed6f6ab
Partially addresses #47424.
7 lines
216 B
Ruby
7 lines
216 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EmailValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
record.errors.add(attribute, :invalid) unless value =~ Devise.email_regexp
|
|
end
|
|
end
|