mirror of
				https://git.proxmox.com/git/pmg-gui
				synced 2025-11-04 04:24:22 +00:00 
			
		
		
		
	keep it simple and avoid an extra options panel Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			771 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			771 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: 'pmgTFAView',
 | 
						|
	    title: 'Two Factor',
 | 
						|
	    itemId: 'tfa',
 | 
						|
	    iconCls: 'fa fa-key',
 | 
						|
	    issuerName: `Proxmox Mail Gateway - ${Proxmox.NodeName}`,
 | 
						|
	},
 | 
						|
	{
 | 
						|
	    xtype: 'pmgLDAPConfig',
 | 
						|
	    title: 'LDAP',
 | 
						|
	    itemId: 'ldap',
 | 
						|
	    iconCls: 'fa fa-address-book-o',
 | 
						|
	},
 | 
						|
	{
 | 
						|
	    xtype: 'pmgFetchmailView',
 | 
						|
	    title: 'Fetchmail',
 | 
						|
	    itemId: 'pop',
 | 
						|
	    iconCls: 'fa fa-reply-all',
 | 
						|
	},
 | 
						|
    ],
 | 
						|
});
 |