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

  define_model_callbacks :create

  has_secure_password

  attr_accessor :password_digest
end