From 5bd3ad4e90b4062a3c49d0aea6f5352f9db975c1 Mon Sep 17 00:00:00 2001 From: Lukas Wagner Date: Tue, 14 Nov 2023 13:59:49 +0100 Subject: [PATCH] notification ui: unprotected mailto-root target A default notification config will now be created in pve-manager's postinst hook - which is not magic in any way and can be modified and deleted as desired. Signed-off-by: Lukas Wagner --- src/panel/NotificationConfigView.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/panel/NotificationConfigView.js b/src/panel/NotificationConfigView.js index ecf764d..6a9bc20 100644 --- a/src/panel/NotificationConfigView.js +++ b/src/panel/NotificationConfigView.js @@ -41,10 +41,6 @@ Ext.define('Proxmox.panel.NotificationEndpointView', { openEditWindow: function(endpointType, endpoint) { let me = this; - if (endpoint === 'mail-to-root') { - return; - } - Ext.create('Proxmox.window.EndpointEditBase', { baseUrl: me.getView().baseUrl, type: endpointType, @@ -183,13 +179,11 @@ Ext.define('Proxmox.panel.NotificationEndpointView', { xtype: 'proxmoxButton', text: gettext('Modify'), handler: 'openEditForSelectedItem', - enableFn: rec => rec.data.name !== 'mail-to-root', disabled: true, }, { xtype: 'proxmoxStdRemoveButton', callback: 'reload', - enableFn: rec => rec.data.name !== 'mail-to-root', getUrl: function(rec) { return `${me.baseUrl}/endpoints/${rec.data.type}/${rec.getId()}`; }, -- 2.39.5