Skip to content

Commit 6c0ece5

Browse files
committed
Added uniqueness and presence for user's username
1 parent a7eb71e commit 6c0ece5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/models/user.rb

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ class User < ActiveRecord::Base
33
has_many :activities
44
before_save :ensure_authentication_token
55
before_save :ensure_gravatar_hash
6+
7+
validates :username, :presence => true, :uniqueness => true
68

79

810
# Kandan.devise_modules is defined in config/initializers/kandan.rb

0 commit comments

Comments
 (0)