mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-04-29 03:29:10 +00:00
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
Ext.define('pmx-users', {
|
|
extend: 'Ext.data.Model',
|
|
fields: [
|
|
'userid', 'firstname', 'lastname', 'email', 'comment',
|
|
{ type: 'boolean', name: 'enable' },
|
|
{ type: 'date', dateFormat: 'timestamp', name: 'expire' },
|
|
],
|
|
proxy: {
|
|
type: 'proxmox',
|
|
url: "/api2/json/access/users",
|
|
},
|
|
idProperty: 'userid',
|
|
});
|