Assignments now generate unique list of exams for each user

This commit is contained in:
Joao Ramos
2023-12-07 18:23:00 +00:00
parent f7af21878e
commit 5eaa0ac269
3 changed files with 91 additions and 34 deletions

View File

@@ -19,7 +19,7 @@ export interface Assignment {
type: "academic" | "general";
stats: Stat[];
}[];
exams: {id: string; module: Module}[];
exams: {id: string; module: Module, assignee: string}[];
startDate: Date;
endDate: Date;
}