multi-user support

This commit is contained in:
2024-01-08 16:32:08 +01:00
parent 9314d78c9c
commit 8a90c58417
9 changed files with 117 additions and 58 deletions

View File

@@ -11,6 +11,8 @@ export interface BillAttachment {
/** bill object in the form returned by MongoDB */
export interface BillingLocation {
_id: string;
userId: string;
userEmail?: string | null;
name: string;
/** the value is encoded as yyyymm (i.e. 202301) */
yearMonth: number;