mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 01:01:39 -05:00
7 lines
267 B
Ruby
7 lines
267 B
Ruby
|
|
class User < ApplicationRecord
|
||
|
|
# Include default devise modules. Others available are:
|
||
|
|
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
|
||
|
|
devise :database_authenticatable, :registerable,
|
||
|
|
:recoverable, :rememberable, :validatable
|
||
|
|
end
|