]> git.proxmox.com Git - pmg-gui.git/blob - js/SpamContextMenu.js
user view: disable unlock TFA button initially
[pmg-gui.git] / js / SpamContextMenu.js
1 Ext.define('PMG.menu.SpamContextMenu', {
2 extend: 'PMG.menu.QuarantineContextMenu',
3
4 items: [
5 {
6 text: gettext('Deliver'),
7 iconCls: 'fa fa-fw fa-paper-plane-o info-blue',
8 action: 'deliver',
9 handler: 'callCallback',
10 },
11 {
12 text: gettext('Delete'),
13 iconCls: 'fa fa-fw fa-trash-o critical',
14 action: 'delete',
15 handler: 'callCallback',
16 },
17 { xtype: 'menuseparator' },
18 {
19 text: gettext('Whitelist'),
20 iconCls: 'fa fa-fw fa-check',
21 action: 'whitelist',
22 handler: 'callCallback',
23 },
24 {
25 text: gettext('Blacklist'),
26 iconCls: 'fa fa-fw fa-times',
27 action: 'blacklist',
28 handler: 'callCallback',
29 },
30 ],
31 });