aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/visitor.rb
blob: 5bcd5d6458bf1fe04078caa1dcd5b51fada30fc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true
class Visitor
  extend ActiveModel::Callbacks
  include ActiveModel::SecurePassword

  define_model_callbacks :create

  has_secure_password(validations: false)

  attr_accessor :password_digest, :password_confirmation
end