[pbs-devel] [PATCH proxmox-backup] server: sync email notification: adapt template for local sync jobs
Lukas Wagner
l.wagner at proxmox.com
Wed Nov 29 17:35:12 CET 2023
Add a guard clause that checks `job.remote`, otherwise the template
fails to render to to handlebars being configured in strict mode.
Signed-off-by: Lukas Wagner <l.wagner at proxmox.com>
---
src/server/email_notifications.rs | 26 ++++++++++++++++----------
1 file changed, 16 insertions(+), 10 deletions(-)
diff --git a/src/server/email_notifications.rs b/src/server/email_notifications.rs
index 18881782..43b55656 100644
--- a/src/server/email_notifications.rs
+++ b/src/server/email_notifications.rs
@@ -90,11 +90,14 @@ Please visit the web interface for further details:
const SYNC_OK_TEMPLATE: &str = r###"
-Job ID: {{job.id}}
-Datastore: {{job.store}}
-Remote: {{job.remote}}
-Remote Store: {{job.remote-store}}
-
+Job ID: {{job.id}}
+Datastore: {{job.store}}
+{{#if job.remote~}}
+Remote: {{job.remote}}
+Remote Store: {{job.remote-store}}
+{{else~}}
+Local Source Store: {{job.remote-store}}
+{{/if}}
Synchronization successful.
@@ -106,11 +109,14 @@ Please visit the web interface for further details:
const SYNC_ERR_TEMPLATE: &str = r###"
-Job ID: {{job.id}}
-Datastore: {{job.store}}
-Remote: {{job.remote}}
-Remote Store: {{job.remote-store}}
-
+Job ID: {{job.id}}
+Datastore: {{job.store}}
+{{#if job.remote~}}
+Remote: {{job.remote}}
+Remote Store: {{job.remote-store}}
+{{else~}}
+Local Source Store: {{job.remote-store}}
+{{/if}}
Synchronization failed: {{error}}
--
2.39.2
More information about the pbs-devel
mailing list