mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
Re-add EmailValidator to avoid the repetition of format: { with: Devise.email_regexp }
This commit is contained in:
@@ -71,7 +71,7 @@ class ApplicationSetting < ActiveRecord::Base
|
||||
url: true
|
||||
|
||||
validates :admin_notification_email,
|
||||
format: { with: Devise.email_regexp },
|
||||
email: true,
|
||||
allow_blank: true
|
||||
|
||||
validates :two_factor_grace_period,
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ class Email < ActiveRecord::Base
|
||||
belongs_to :user
|
||||
|
||||
validates :user_id, presence: true
|
||||
validates :email, presence: true, uniqueness: true, format: { with: Devise.email_regexp }
|
||||
validates :email, presence: true, uniqueness: true, email: true
|
||||
validate :unique_email, if: ->(email) { email.email_changed? }
|
||||
|
||||
before_validation :cleanup_email
|
||||
|
||||
@@ -38,8 +38,7 @@ class Member < ActiveRecord::Base
|
||||
presence: {
|
||||
if: :invite?
|
||||
},
|
||||
format: {
|
||||
with: Devise.email_regexp,
|
||||
email: {
|
||||
allow_nil: true
|
||||
},
|
||||
uniqueness: {
|
||||
|
||||
+2
-2
@@ -146,8 +146,8 @@ class User < ActiveRecord::Base
|
||||
# Validations
|
||||
#
|
||||
validates :name, presence: true
|
||||
validates :notification_email, presence: true, format: { with: Devise.email_regexp }
|
||||
validates :public_email, presence: true, uniqueness: true, format: { with: Devise.email_regexp }, allow_blank: true
|
||||
validates :notification_email, presence: true, email: true
|
||||
validates :public_email, presence: true, uniqueness: true, email: true, allow_blank: true
|
||||
validates :bio, length: { maximum: 255 }, allow_blank: true
|
||||
validates :projects_limit, presence: true, numericality: { greater_than_or_equal_to: 0 }
|
||||
validates :username,
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
class EmailValidator < ActiveModel::EachValidator
|
||||
def validate_each(record, attribute, value)
|
||||
record.errors.add(attribute, :invalid) unless value =~ Devise.email_regexp
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user