mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-03 21:35:27 +00:00
17 lines
311 B
JavaScript
17 lines
311 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('Deferred Mails'),
|
|
xtype: 'pmgPostfixQShape'
|
|
}
|
|
]
|
|
});
|