]> git.proxmox.com Git - pmg-gui.git/blame - js/UserManagement.js
buildsys: makefiles convert to use simple parenthesis
[pmg-gui.git] / js / UserManagement.js
CommitLineData
f6b1b3bf
DM
1Ext.define('PMG.UserManagement', {
2 extend: 'Ext.tab.Panel',
3 alias: 'widget.pmgUserManagement',
4
5 title: gettext('Configuration') + ': ' +
6 gettext('User Management'),
7
8 border: false,
9 defaults: { border: false },
10
11 items: [
12 {
fc0ba73d 13 xtype: "pmgUserView",
f6b1b3bf 14 title: gettext('Local'),
3718baf3 15 itemId: 'local',
fc0ba73d 16 iconCls: 'fa fa-user',
f6b1b3bf 17 },
6ba2d1ca 18 {
704d4b87 19 xtype: 'pmgTFAView',
6ba2d1ca
TL
20 title: 'Two Factor',
21 itemId: 'tfa',
22 iconCls: 'fa fa-key',
480a1569 23 issuerName: `Proxmox Mail Gateway - ${Proxmox.NodeName}`,
6ba2d1ca 24 },
f6b1b3bf 25 {
fc0ba73d 26 xtype: 'pmgLDAPConfig',
c37614f5 27 title: 'LDAP',
3718baf3 28 itemId: 'ldap',
fc0ba73d 29 iconCls: 'fa fa-address-book-o',
f6b1b3bf
DM
30 },
31 {
fc0ba73d 32 xtype: 'pmgFetchmailView',
6a2f908e 33 title: 'Fetchmail',
3718baf3 34 itemId: 'pop',
fc0ba73d 35 iconCls: 'fa fa-reply-all',
c87d46fb
TL
36 },
37 ],
f6b1b3bf 38});