mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-01 19:46:58 +00:00
22 lines
415 B
JavaScript
22 lines
415 B
JavaScript
Ext.define('PMG.QueueAdministration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgQueueAdministration',
|
|
|
|
title: gettext('Queue Administration'),
|
|
|
|
border: false,
|
|
defaults: { border: false },
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Shape'),
|
|
xtype: 'pmgPostfixQShape'
|
|
},
|
|
{
|
|
title: gettext('Deferred Mails'),
|
|
nodename: Proxmox.NodeName,
|
|
xtype: 'pmgPostfixMailQueue'
|
|
}
|
|
]
|
|
});
|