about summary refs log tree commit diff stats
path: root/app/models/user.rb
blob: b8bdae1ce2efac5f479e509d5b30c03da730fab4 (plain) (blame)
1
2
3
4
5
6
class User < ApplicationRecord
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable and :omniauthable
  devise :database_authenticatable,
         :recoverable, :rememberable, :trackable, :validatable
end