aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/secure_password.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activemodel/lib/active_model/secure_password.rb')
-rw-r--r--activemodel/lib/active_model/secure_password.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb
index 7c529cb67b..e7a57cf691 100644
--- a/activemodel/lib/active_model/secure_password.rb
+++ b/activemodel/lib/active_model/secure_password.rb
@@ -10,19 +10,6 @@ module ActiveModel
# a "password_confirmation" attribute) are automatically added.
# You can add more validations by hand if need be.
#
- # Note: the implementation of <tt>has_secure_password</tt> enforces presence validation
- # on the <tt>:password_digest</tt> attribute rather than on <tt>:password</tt>, which is
- # in fact a virtual reader attribute. However, <tt>validates_confirmation_of</tt> ensures
- # an indirect means of presence validation of <tt>:password</tt> if the
- # <tt>:password_confirmation</tt> attribute is not nil.
- #
- # You may want to add presence validation on <tt>:password</tt> for the benefit of your forms
- #
- # class User < ActiveRecord::Base
- # has_secure_password
- # validates :password, :presence => { :on => :create }
- # end
- #
# You need to add bcrypt-ruby (~> 3.0.0) to Gemfile to use has_secure_password:
#
# gem 'bcrypt-ruby', '~> 3.0.0'