Only validate User.unique_email on create
This commit is contained in:
parent
a34f544ddf
commit
3d3b51ee1a
@ -80,7 +80,7 @@ class User < ApplicationRecord
|
||||
accepts_nested_attributes_for :invite_request, reject_if: ->(attributes) { attributes['text'].blank? }
|
||||
|
||||
validates :locale, inclusion: I18n.available_locales.map(&:to_s), if: :locale?
|
||||
validates :unique_email, uniqueness: true
|
||||
validates :unique_email, uniqueness: true, on: :create
|
||||
validates_with BlacklistedEmailValidator, on: :create
|
||||
validates_with EmailMxValidator, if: :validate_email_dns?
|
||||
validates :agreement, acceptance: { allow_nil: false, accept: [true, 'true', '1'] }, on: :create
|
||||
|
Loading…
x
Reference in New Issue
Block a user