mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-08-19 08:20:15 +00:00
add missing itemIds for url mapping
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
2c866ec990
commit
61415efabe
@ -38,12 +38,14 @@ Ext.define('PMG.QueueAdministration', {
|
|||||||
{
|
{
|
||||||
title: gettext('Summary'),
|
title: gettext('Summary'),
|
||||||
nodename: Proxmox.NodeName,
|
nodename: Proxmox.NodeName,
|
||||||
|
itemId: 'qshape',
|
||||||
xtype: 'pmgPostfixQShape'
|
xtype: 'pmgPostfixQShape'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: gettext('Deferred Mail'),
|
title: gettext('Deferred Mail'),
|
||||||
nodename: Proxmox.NodeName,
|
nodename: Proxmox.NodeName,
|
||||||
reference: 'mailq',
|
reference: 'mailq',
|
||||||
|
itemId: 'mailqueue',
|
||||||
xtype: 'pmgPostfixMailQueue'
|
xtype: 'pmgPostfixMailQueue'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -9,11 +9,13 @@ Ext.define('PMG.ServerAdministration', {
|
|||||||
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
xtype: 'pmgServerStatus'
|
xtype: 'pmgServerStatus',
|
||||||
|
itemId: 'status'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'proxmoxNodeServiceView',
|
xtype: 'proxmoxNodeServiceView',
|
||||||
title: gettext('Services'),
|
title: gettext('Services'),
|
||||||
|
itemId: 'services',
|
||||||
startOnlyServices: {
|
startOnlyServices: {
|
||||||
syslog: true,
|
syslog: true,
|
||||||
pmgproxy: true,
|
pmgproxy: true,
|
||||||
@ -23,16 +25,19 @@ Ext.define('PMG.ServerAdministration', {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: gettext('Updates'),
|
title: gettext('Updates'),
|
||||||
|
itemId: 'updates',
|
||||||
html: "Server Administration2"
|
html: "Server Administration2"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'proxmoxLogView',
|
xtype: 'proxmoxLogView',
|
||||||
|
itemId: 'logs',
|
||||||
title: gettext('Syslog'),
|
title: gettext('Syslog'),
|
||||||
url: "/api2/extjs/nodes/" + Proxmox.NodeName + "/syslog",
|
url: "/api2/extjs/nodes/" + Proxmox.NodeName + "/syslog",
|
||||||
log_select_timespan: 1
|
log_select_timespan: 1
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
xtype: 'proxmoxNodeTasks',
|
xtype: 'proxmoxNodeTasks',
|
||||||
|
itemId: 'tasks',
|
||||||
title: gettext('Tasks'),
|
title: gettext('Tasks'),
|
||||||
height: 'auto',
|
height: 'auto',
|
||||||
nodename: Proxmox.NodeName
|
nodename: Proxmox.NodeName
|
||||||
|
@ -11,14 +11,17 @@ Ext.define('PMG.VirusDetectorConfiguration', {
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
title: gettext('Options'),
|
title: gettext('Options'),
|
||||||
|
itemId: 'options',
|
||||||
xtype: 'pmgVirusDetectorOptions'
|
xtype: 'pmgVirusDetectorOptions'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: gettext('ClamAV'),
|
title: gettext('ClamAV'),
|
||||||
|
itemId: 'clamav',
|
||||||
xtype: 'pmgClamAVDatabase'
|
xtype: 'pmgClamAVDatabase'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: gettext('Quarantine'),
|
title: gettext('Quarantine'),
|
||||||
|
itemId: 'quarantine',
|
||||||
xtype: 'pmgVirusQuarantineOptions'
|
xtype: 'pmgVirusQuarantineOptions'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user