name: "Starting Room" panels { name: "STARLIKE" path: "Panels/Room_1/panel_1" clue: "starlike" answer: "stellar" symbols: SUN } ports { name: "WORLDPORT" display_name: "Entrance" path: "Components/Warps/worldport" destination { x: 0 y: 0 z: 0 } rotation: 0 } 'thoughts Git repository'/>
about summary refs log tree commit diff stats
path: root/app/models/user.rb
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