fixup: acutally commit all changes..
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
34
www/panel/AccessControl.js
Normal file
34
www/panel/AccessControl.js
Normal file
@ -0,0 +1,34 @@
|
||||
Ext.define('PBS.AccessControlPanel', {
|
||||
extend: 'Ext.tab.Panel',
|
||||
alias: 'widget.pbsAccessControlPanel',
|
||||
mixins: ['Proxmox.Mixin.CBind'],
|
||||
|
||||
title: gettext('Access Control'),
|
||||
|
||||
border: false,
|
||||
defaults: {
|
||||
border: false,
|
||||
},
|
||||
|
||||
items: [
|
||||
{
|
||||
xtype: 'pbsUserView',
|
||||
title: gettext('User Management'),
|
||||
itemId: 'users',
|
||||
iconCls: 'fa fa-user',
|
||||
},
|
||||
{
|
||||
xtype: 'pbsTokenView',
|
||||
title: gettext('API Token'),
|
||||
itemId: 'apitokens',
|
||||
iconCls: 'fa fa-user-o',
|
||||
},
|
||||
{
|
||||
xtype: 'pbsACLView',
|
||||
title: gettext('Permissions'),
|
||||
itemId: 'permissions',
|
||||
iconCls: 'fa fa-unlock',
|
||||
},
|
||||
],
|
||||
|
||||
});
|
Reference in New Issue
Block a user