fix: made user room number a string for added flexibility

This commit is contained in:
2025-05-06 21:45:53 +02:00
parent fd9380a61d
commit b7f9ee572e
12 changed files with 30 additions and 35 deletions

View File

@@ -5,7 +5,7 @@ interface UKey {
interface AKey {
room: string;
whom?: {_id: string, uname: string, room: number};
whom?: {_id: string, uname: string, room: string};
borrow?: moment.Moment;
tb?: moment.Moment;
}

View File

@@ -3,7 +3,7 @@ export interface Notification {
title: string;
recp: {
uname: string | null;
room: number | null;
room: string | null;
type: "all" | "room" | "uname"
}
}