Added a feature to automatically start an exam

This commit is contained in:
Joao Ramos
2024-09-03 19:23:45 +01:00
parent 6774b2d0b6
commit d307c61cd7
2 changed files with 29 additions and 1 deletions

View File

@@ -32,6 +32,8 @@ export interface Assignment {
// unless start is active, the assignment is not visible to the assignees
// start date now works as a limit time to start the exam
start?: boolean;
autoStartDate?: Date;
autoStart?: boolean;
}
export type AssignmentWithCorporateId = Assignment & {corporateId: string};