mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-10-06 03:52:16 +00:00
32 lines
665 B
JavaScript
32 lines
665 B
JavaScript
Ext.define('PMG.menu.SpamContextMenu', {
|
|
extend: 'PMG.menu.QuarantineContextMenu',
|
|
|
|
items: [
|
|
{
|
|
text: gettext('Deliver'),
|
|
iconCls: 'fa fa-fw fa-paper-plane-o',
|
|
action: 'deliver',
|
|
handler: 'callCallback',
|
|
},
|
|
{
|
|
text: gettext('Delete'),
|
|
iconCls: 'fa fa-fw fa-trash-o',
|
|
action: 'delete',
|
|
handler: 'callCallback',
|
|
},
|
|
{ xtype: 'menuseparator' },
|
|
{
|
|
text: gettext('Whitelist'),
|
|
iconCls: 'fa fa-fw fa-check',
|
|
action: 'whitelist',
|
|
handler: 'callCallback',
|
|
},
|
|
{
|
|
text: gettext('Blacklist'),
|
|
iconCls: 'fa fa-fw fa-times',
|
|
action: 'blacklist',
|
|
handler: 'callCallback',
|
|
},
|
|
],
|
|
});
|