pmg-gui/js/UserManagement.js
Thomas Lamprecht fc0ba73d01 user management: add icons
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2021-07-13 19:11:13 +02:00

34 lines
604 B
JavaScript

Ext.define('PMG.UserManagement', {
extend: 'Ext.tab.Panel',
alias: 'widget.pmgUserManagement',
title: gettext('Configuration') + ': ' +
gettext('User Management'),
border: false,
defaults: { border: false },
items: [
{
xtype: "pmgUserView",
title: gettext('Local'),
itemId: 'local',
iconCls: 'fa fa-user',
},
{
xtype: 'pmgLDAPConfig',
title: 'LDAP',
itemId: 'ldap',
iconCls: 'fa fa-address-book-o',
},
{
xtype: 'pmgFetchmailView',
title: 'Fetchmail',
itemId: 'pop',
iconCls: 'fa fa-reply-all',
},
],
});