Updated the grading system to work based on entities

This commit is contained in:
Tiago Ribeiro
2024-11-22 15:36:21 +00:00
parent f301001ebe
commit 50bbb0dacf
14 changed files with 236 additions and 484 deletions

View File

@@ -7,7 +7,6 @@ export interface Step {
}
export interface Grading {
user: string;
entity?: string;
entity: string;
steps: Step[];
}