feat: move notifications origin resolving to backend

Signed-off-by: Heikki Hellgren <heikki.hellgren@op.fi>
This commit is contained in:
Heikki Hellgren
2024-02-29 17:49:48 +02:00
parent 6ea413c7e8
commit a790a3dfa0
11 changed files with 62 additions and 82 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ export type NotificationPayload = {
title: string;
description?: string;
link?: string;
severity: NotificationSeverity;
severity?: NotificationSeverity;
topic?: string;
scope?: string;
icon?: string;
+1 -1
View File
@@ -24,7 +24,7 @@ export type NotificationPayload = {
link?: string;
// TODO: Add support for additional links
// additionalLinks?: string[];
severity: NotificationSeverity;
severity?: NotificationSeverity;
topic?: string;
scope?: string;
icon?: string;