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

  has_secure_token :pokeviewer_token
end