Adapt the backup job detail view so that it shows notification
targets.

Signed-off-by: Lukas Wagner <l.wag...@proxmox.com>
---
 www/manager6/dc/BackupJobDetail.js | 20 ++++++++++++++++----
 1 file changed, 16 insertions(+), 4 deletions(-)

diff --git a/www/manager6/dc/BackupJobDetail.js 
b/www/manager6/dc/BackupJobDetail.js
index 880784a2..e154fec1 100644
--- a/www/manager6/dc/BackupJobDetail.js
+++ b/www/manager6/dc/BackupJobDetail.js
@@ -202,15 +202,27 @@ Ext.define('PVE.dc.BackupInfo', {
     column2: [
        {
            xtype: 'displayfield',
-           name: 'mailnotification',
+           name: 'notification-policy',
            fieldLabel: gettext('Notification'),
            renderer: function(value) {
-               let mailto = this.up('pveBackupInfo')?.record?.mailto || 
'root@localhost';
+               let record = this.up('pveBackupInfo')?.record;
+
+               // Fall back to old value, in case this option is not migrated 
yet.
+               let policy = value || record?.mailnotification || 'always';
+
                let when = gettext('Always');
-               if (value === 'failure') {
+               if (policy === 'failure') {
                    when = gettext('On failure only');
+               } else if (policy === 'never') {
+                   when = gettext('Never');
                }
-               return `${when} (${mailto})`;
+
+               // Notification-target takes precedence
+               let target = record?.['notification-target'] ||
+                   record?.mailto ||
+                   gettext('No target configured');
+
+               return `${when} (${target})`;
            },
        },
        {
-- 
2.39.2



_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to