mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
f8c9a4d3e8
This will be moved out to protected_attributes gem
11 lines
258 B
Ruby
11 lines
258 B
Ruby
class Visitor
|
|
extend ActiveModel::Callbacks
|
|
include ActiveModel::Validations
|
|
include ActiveModel::SecurePassword
|
|
|
|
define_model_callbacks :create
|
|
|
|
has_secure_password(validations: false)
|
|
|
|
attr_accessor :password_digest, :password_confirmation
|
|
end
|