|
123456789101112131415161718 |
- class User
- include MongoMapper::Document
-
- key :email, String
- key :crypted_password, String
- key :salt, String
- timestamps!
-
- authenticates_with_sorcery!
- # attr_accessible :email, :password, :password_confirmation
-
- validates_presence_of :email
- validates_presence_of :password, :on => :create
- validates_uniqueness_of :email
- validates_length_of :password, :minimum => 3, :message => "password must be at least 3 characters long", :if => :password
- validates_confirmation_of :password, :message => "should match confirmation", :if => :password
-
- end
|