mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-04-28 17:23:28 +00:00
36 lines
697 B
JavaScript
36 lines
697 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',
|
|
},
|
|
{
|
|
title: gettext('Custom Scores'),
|
|
itemId: 'scores',
|
|
xtype: 'pmgSpamDetectorCustomScores',
|
|
},
|
|
],
|
|
});
|
|
|
|
|