caused too much unexpected weirdness although would have been fun as a bug, had to remove

This commit is contained in:
Ken Johnson
2013-04-28 15:23:43 -04:00
parent 713e28b753
commit 30c5736413
-4
View File
@@ -4,10 +4,6 @@ class User < ActiveRecord::Base
validates :password, :presence => true,
:confirmation => true,
:length => {:within => 6..40}
# I think this makes sense, have both, right? If we are updating our password and creating one?
:on => :create,
:on => :update
# Solution? Remove both :on => statements, it will naturally take effect for any changes.
validates_presence_of :email
validates_uniqueness_of :email
validates_format_of :email, :with => /.+@.+\..+/i