mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
- with attributes: model, imei_number, unique_id and access_token - access_token is automatically generated on create
7 lines
259 B
Ruby
7 lines
259 B
Ruby
class AdminUser < ActiveRecord::Base
|
|
# Include default devise modules. Others available are:
|
|
# :confirmable, :lockable, :timeoutable and :omniauthable
|
|
devise :database_authenticatable,
|
|
:recoverable, :rememberable, :trackable, :validatable
|
|
end
|