mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
Validates presence of UserEmail#user_id in AR.
This commit is contained in:
@@ -7,6 +7,7 @@ class UserEmail < ActiveRecord::Base
|
||||
|
||||
before_validation :strip_downcase_email
|
||||
|
||||
validates :user_id, presence: true
|
||||
validates :email, presence: true, uniqueness: true
|
||||
|
||||
validates :email, email: true, format: { with: EmailValidator.email_regex },
|
||||
|
||||
Reference in New Issue
Block a user