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>
10 lines
231 B
Ruby
10 lines
231 B
Ruby
class Administrator
|
|
include ActiveModel::Validations
|
|
include ActiveModel::SecurePassword
|
|
include ActiveModel::MassAssignmentSecurity
|
|
|
|
attr_accessor :name, :password_digest
|
|
attr_accessible :name
|
|
|
|
has_secure_password
|
|
end
|