OSDN Git Service

email validation added
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Tue, 26 Feb 2013 09:09:32 +0000 (11:09 +0200)
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Tue, 26 Feb 2013 09:09:32 +0000 (11:09 +0200)
app/models/user.rb

index 4ed31c7..b72349f 100644 (file)
@@ -70,6 +70,7 @@ class User < ActiveRecord::Base
   has_many :team_projects,                   through: :user_team_project_relationships
 
   validates :name, presence: true
+  validates :email, presence: true, format: { with: /\A([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})\Z/ }
   validates :bio, length: { within: 0..255 }
   validates :extern_uid, allow_blank: true, uniqueness: {scope: :provider}
   validates :projects_limit, presence: true, numericality: {greater_than_or_equal_to: 0}