fix: notification icon
All checks were successful
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 3m8s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 2m36s
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 2m54s
/ deploy (push) Successful in 18s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 2m58s
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 2m50s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 2m47s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 3m4s

This commit is contained in:
Jo 2025-08-09 10:30:51 +02:00
parent 042d4040ee
commit f42df5ca06
Signed by: devthejo
GPG key ID: 00CCA7A92B1D5351
3 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ function createEmergencyInfoNotification({
title: "Infos de localisation pour les secours",
body: notificationText,
channel: "alert-infos",
icon: `notif-${level}.png`,
icon: `notif-${level}`,
priority: "high",
ttl: expires,
actionId: "open-alert",

View file

@ -22,7 +22,7 @@ function createSuggestCloseNotification({ code, level, alertId }) {
title: `Alerte toujours en cours - #${code}`,
body: "Votre alerte est toujours ouverte, pensez à la terminer si la situation est résolue",
channel: "suggest-close",
icon: `notif-${level}.png`,
icon: `notif-${level}`,
priority: "high",
ttl: expires,
color,

View file

@ -22,7 +22,7 @@ function createSuggestKeepOpenNotification({ alertId, code, level }) {
title: `Alerte bientôt expirée - #${code}`,
body: "Votre alerte va bientôt expirer, gardez la ouverte si la situation n'est pas résolue",
channel: "suggest-keep-open",
icon: `notif-${level}.png`,
icon: `notif-${level}`,
priority: "high",
ttl: expires,
color,