blob: f9f68fa6ce1e3f6820ef0ff7f406f7946cb3c1db (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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
has_many :blogs
end
|