mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-09 04:46:07 +10:00
12 lines
322 B
Ruby
12 lines
322 B
Ruby
class AdminUser < ActiveRecord::Base
|
|
# Include default devise modules. Others available are:
|
|
# :confirmable, :lockable, :timeoutable and :omniauthable
|
|
attr_accessible :email, :password, :password_confirmation
|
|
|
|
devise :database_authenticatable,
|
|
:recoverable, :rememberable, :trackable, :validatable
|
|
|
|
|
|
end
|
|
|