password=

password=(unencrypted_password)
Instance Public methods

Encrypts the password into the password_digest attribute, only if the new password is not blank.

1
2
3
4
5
6
7
8
9
class User < ActiveRecord::Base
  has_secure_password validations: false
end
 
user = User.new
user.password = nil
user.password_digest # => nil
user.password = 'mUc3m00RsqyRe'
user.password_digest # => "$2a$10$4LEA7r4YmNHtvlAvHhsYAeZmk/xeUVtMTYqwIvYY76EW5GUqDiP4."
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.