pmg-gui/js/SpamDetectorConfiguration.js
Thomas Lamprecht c87d46fbe8 tree wide: eslint --fix
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2020-10-23 13:17:15 +02:00

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',
},
],
});