add missing itemIds for url mapping

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2017-09-19 09:18:34 +02:00 committed by Dietmar Maurer
parent 2c866ec990
commit 61415efabe
3 changed files with 11 additions and 1 deletions

View File

@ -38,12 +38,14 @@ Ext.define('PMG.QueueAdministration', {
{
title: gettext('Summary'),
nodename: Proxmox.NodeName,
itemId: 'qshape',
xtype: 'pmgPostfixQShape'
},
{
title: gettext('Deferred Mail'),
nodename: Proxmox.NodeName,
reference: 'mailq',
itemId: 'mailqueue',
xtype: 'pmgPostfixMailQueue'
}
]

View File

@ -9,11 +9,13 @@ Ext.define('PMG.ServerAdministration', {
items: [
{
xtype: 'pmgServerStatus'
xtype: 'pmgServerStatus',
itemId: 'status'
},
{
xtype: 'proxmoxNodeServiceView',
title: gettext('Services'),
itemId: 'services',
startOnlyServices: {
syslog: true,
pmgproxy: true,
@ -23,16 +25,19 @@ Ext.define('PMG.ServerAdministration', {
},
{
title: gettext('Updates'),
itemId: 'updates',
html: "Server Administration2"
},
{
xtype: 'proxmoxLogView',
itemId: 'logs',
title: gettext('Syslog'),
url: "/api2/extjs/nodes/" + Proxmox.NodeName + "/syslog",
log_select_timespan: 1
},
{
xtype: 'proxmoxNodeTasks',
itemId: 'tasks',
title: gettext('Tasks'),
height: 'auto',
nodename: Proxmox.NodeName

View File

@ -11,14 +11,17 @@ Ext.define('PMG.VirusDetectorConfiguration', {
items: [
{
title: gettext('Options'),
itemId: 'options',
xtype: 'pmgVirusDetectorOptions'
},
{
title: gettext('ClamAV'),
itemId: 'clamav',
xtype: 'pmgClamAVDatabase'
},
{
title: gettext('Quarantine'),
itemId: 'quarantine',
xtype: 'pmgVirusQuarantineOptions'
}
]