only working with dates at at string level on the model

This commit is contained in:
2024-08-24 13:57:15 -06:00
parent cd958f90e6
commit a3a6abdd50
9 changed files with 75 additions and 74 deletions

View File

@@ -4,8 +4,8 @@ import { RubricItem } from "./rubricItem";
export interface LocalAssignment {
name: string;
description: string;
lockAt?: string; // ISO 8601 date string
dueAt: string; // ISO 8601 date string
lockAt?: string; // 21/08/2023 23:59:00
dueAt: string; // 21/08/2023 23:59:00
localAssignmentGroupName?: string;
submissionTypes: AssignmentSubmissionType[];
allowedFileUploadExtensions: string[];