Clickable notifications with url redirect

This commit is contained in:
unknown
2021-10-05 16:31:56 +02:00
parent 1d8e36b46d
commit bf1aa9e85c
5 changed files with 48 additions and 26 deletions

View File

@@ -1,8 +1,9 @@
export interface NewNotification {
title: string;
message: string;
url?: string;
}
export interface Notification extends NewNotification {
id: number;
}
}