]> git.proxmox.com Git - pmg-gui.git/blobdiff - js/SpamDetectorConfiguration.js
fix #4818: Revert "UserEdit: add minLength of 4 to username field"
[pmg-gui.git] / js / SpamDetectorConfiguration.js
index 16b32db9648ed2dfffa34495f4d427bfeae1de71..f70b65bd9ba954af084bbb934cd554f9edeb9e4e 100644 (file)
@@ -5,24 +5,31 @@ Ext.define('PMG.SpamDetectorConfiguration', {
     title: gettext('Configuration') + ': ' +
        gettext('Spam Detector'),
 
+    border: false,
+    defaults: { border: false },
+
     items: [
        {
            title: gettext('Options'),
-           xtype: 'pmgSpamDetectorOptions'
+           itemId: 'options',
+           xtype: 'pmgSpamDetectorOptions',
        },
        {
            title: gettext('Quarantine'),
-           html: 'Quarantine'
+           itemId: 'quarantine',
+           xtype: 'pmgSpamQuarantineOptions',
        },
        {
-           title: gettext('Backscatter'),
-           html: 'Backscatter'
+           title: gettext('Status'),
+           itemId: 'status',
+           xtype: 'pmgSpamDetectorStatus',
        },
        {
-           title: gettext('Theme'),
-           html: 'Theme'
-       }
-    ]
+           title: gettext('Custom Scores'),
+           itemId: 'scores',
+           xtype: 'pmgSpamDetectorCustomScores',
+       },
+    ],
 });