ui: sys config: merge webauthn and general options into one tab

To much wasted space else.
Also rename "Options" to "Others", while it's not _that_ much better
it's slightly more intuitive than config -> options (which has some
redundancy)...

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2022-01-12 12:36:36 +01:00
parent 2e02a859cf
commit 50c0840146
1 changed files with 7 additions and 29 deletions

View File

@ -45,30 +45,9 @@ Ext.define('PBS.SystemConfiguration', {
],
},
{
title: gettext('Authentication'),
itemId: 'authentication',
xtype: 'panel',
layout: {
type: 'vbox',
align: 'stretch',
multi: true,
},
defaults: {
collapsible: true,
animCollapse: false,
margin: '10 10 0 10',
},
items: [
{
title: gettext('Webauthn'),
xtype: 'pbsWebauthnConfigView',
},
],
},
{
title: gettext('Options'),
itemId: 'options',
xtype: 'panel',
title: gettext('Other'),
itemId: 'other-options',
layout: {
type: 'vbox',
align: 'stretch',
@ -84,6 +63,10 @@ Ext.define('PBS.SystemConfiguration', {
title: gettext('General'),
xtype: 'pbsNodeOptionView',
},
{
title: gettext('WebAuthn TFA'),
xtype: 'pbsWebauthnConfigView',
},
],
},
],
@ -98,12 +81,7 @@ Ext.define('PBS.SystemConfiguration', {
item.relayEvents(networktime, ['activate', 'deactivate', 'destroy']);
});
let authentication = me.getComponent('authentication');
Ext.Array.forEach(authentication.query(), function(item) {
item.relayEvents(authentication, ['activate', 'deactivate', 'destroy']);
});
let options = me.getComponent('options');
let options = me.getComponent('other-options');
Ext.Array.forEach(options.query(), function(item) {
item.relayEvents(options, ['activate', 'deactivate', 'destroy']);
});