mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
ad31549ab3
attr_protected should not be called, because it nullifies the mass assignment protection that has been set by attr_accessible. Signed-off-by: Santiago Pastorino <santiago@wyeworks.com>
9 lines
194 B
Ruby
9 lines
194 B
Ruby
class Visitor
|
|
include ActiveModel::Validations
|
|
include ActiveModel::SecurePassword
|
|
include ActiveModel::MassAssignmentSecurity
|
|
|
|
has_secure_password
|
|
|
|
attr_accessor :password_digest
|
|
end
|