mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-25 04:13:37 +00:00
58 lines
998 B
JavaScript
58 lines
998 B
JavaScript
Ext.define('PVE.dc.Config', {
|
|
extend: 'PVE.panel.Config',
|
|
alias: 'widget.PVE.dc.Config',
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
Ext.apply(me, {
|
|
title: "Datacenter",
|
|
hstateid: 'dctab',
|
|
items: [
|
|
{
|
|
xtype: 'pveDcOptionView',
|
|
title: 'Options',
|
|
itemId: 'options'
|
|
},
|
|
{
|
|
xtype: 'pveStorageView',
|
|
title: 'Storage',
|
|
itemId: 'storage'
|
|
},
|
|
{
|
|
title: 'Backup',
|
|
itemId: 'backup',
|
|
html: 'Backup/vzdump Configuration - not implemented!'
|
|
},
|
|
{
|
|
xtype: 'pveUserView',
|
|
title: 'Users',
|
|
itemId: 'users'
|
|
},
|
|
{
|
|
xtype: 'pveGroupView',
|
|
title: 'Groups',
|
|
itemId: 'groups'
|
|
},
|
|
{
|
|
xtype: 'pveACLView',
|
|
title: 'Permissions',
|
|
itemId: 'permissions'
|
|
},
|
|
{
|
|
xtype: 'pveRoleView',
|
|
title: 'Roles',
|
|
itemId: 'roles'
|
|
},
|
|
{
|
|
xtype: 'pveAuthView',
|
|
title: 'Authentication',
|
|
itemId: 'domains'
|
|
}
|
|
]
|
|
});
|
|
|
|
me.callParent();
|
|
}
|
|
});
|