add web_notifications and email_notifications to user interface

This commit is contained in:
2026-03-26 10:20:13 +01:00
parent a272b5acc9
commit c7b9127cee
+3 -1
View File
@@ -11,5 +11,7 @@ export default interface User {
isAdmin: boolean; isAdmin: boolean;
validate: number; validate: number;
tasks: TaskType[]; tasks: TaskType[];
profile_photo_path?: string | null; profile_photo_path?: string | null,
email_notifications: number,
web_notifications: number;
} }