aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/test/models/user.rb
blob: bb1b187694b47636053cd9065653338793ea4ee5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class User
  extend ActiveModel::Callbacks
  include ActiveModel::SecurePassword

  define_model_callbacks :create

  has_secure_password
  has_secure_password :recovery_password, validations: false

  attr_accessor :password_digest, :recovery_password_digest
end