diff options
author | John Ankarström <john@ankarstrom.se> | 2021-03-13 22:05:55 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-03-13 22:05:55 +0100 |
commit | 69c0dff574cbe13bd3b9c23bde10a685dce16b2a (patch) | |
tree | 92a264e8e1b53afe4832572b79093da599722dea /interfaces/ruby/models | |
parent | edd1b21f926f0bcec0033b4b481fe12f54029224 (diff) | |
download | comb-master.tar.gz |
Diffstat (limited to 'interfaces/ruby/models')
-rw-r--r-- | interfaces/ruby/models/user.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/interfaces/ruby/models/user.rb b/interfaces/ruby/models/user.rb index 8b88b4a..a251dec 100644 --- a/interfaces/ruby/models/user.rb +++ b/interfaces/ruby/models/user.rb @@ -1,8 +1,19 @@ +require 'bcrypt' + class User < ActiveRecord::Base has_many :posts + has_many :sessions validates_presence_of :username validates_presence_of :password_hash + + def hash(password) + BCrypt::Password.create(password) + end + + def authenticate(password) + BCrypt::Password.new(@password) == password + end end class CreateUserTable < ActiveRecord::Migration[6.0] |