mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-31 19:28:48 +00:00

necessary for the routing via url fragment Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
31 lines
581 B
JavaScript
31 lines
581 B
JavaScript
Ext.define('PMG.SpamDetectorConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgSpamDetectorConfiguration',
|
|
|
|
title: gettext('Configuration') + ': ' +
|
|
gettext('Spam Detector'),
|
|
|
|
border: false,
|
|
defaults: { border: false },
|
|
|
|
items: [
|
|
{
|
|
title: gettext('Options'),
|
|
itemId: 'options',
|
|
xtype: 'pmgSpamDetectorOptions'
|
|
},
|
|
{
|
|
title: gettext('Quarantine'),
|
|
itemId: 'quarantine',
|
|
xtype: 'pmgSpamQuarantineOptions'
|
|
},
|
|
{
|
|
title: gettext('Status'),
|
|
itemId: 'status',
|
|
xtype: 'pmgSpamDetectorStatus'
|
|
}
|
|
]
|
|
});
|
|
|
|
|