summaryrefslogtreecommitdiff
path: root/app/models/user.rb
blob: 6083f2194f670dd7225151689f3cfa56315722a1 (plain)
1
2
3
4
5
6
class User < ApplicationRecord
  # Include default devise modules. Others available are:
  # :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
  devise :database_authenticatable, :registerable, :recoverable, :rememberable, :validatable, :trackable,
         :confirmable, :lockable
end