add approved field to exam

This commit is contained in:
Joao Correia
2025-03-04 00:33:09 +00:00
parent 75fb9490e0
commit 3370f3c648
2 changed files with 4 additions and 3 deletions

View File

@@ -29,6 +29,7 @@ export interface ExamBase {
access: AccessType;
label?: string;
requiresApproval?: boolean;
approved?: boolean;
}
export interface ReadingExam extends ExamBase {
module: "reading";