From c7b9127cee1197f4e0788956f57a1f983a67a937 Mon Sep 17 00:00:00 2001 From: Giovanni-Josserand Date: Thu, 26 Mar 2026 10:20:13 +0100 Subject: [PATCH] add web_notifications and email_notifications to user interface --- src/interfaces/user.interface.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/interfaces/user.interface.ts b/src/interfaces/user.interface.ts index dbfa4fa..150286f 100644 --- a/src/interfaces/user.interface.ts +++ b/src/interfaces/user.interface.ts @@ -11,5 +11,7 @@ export default interface User { isAdmin: boolean; validate: number; tasks: TaskType[]; - profile_photo_path?: string | null; + profile_photo_path?: string | null, + email_notifications: number, + web_notifications: number; } \ No newline at end of file