adding editing assignment groups

This commit is contained in:
2024-09-10 21:22:51 -06:00
parent 6266879103
commit fe0014d472
7 changed files with 267 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
export interface CanvasAssignmentGroup {
id: number; // TypeScript doesn't have `ulong`, so using `number` for large integers.
name: string;
position: number;
group_weight: number;
// sis_source_id?: string; // Uncomment if needed.
// integration_data?: Record<string, string>; // Uncomment if needed.
// assignments?: CanvasAssignment[]; // Uncomment if needed, assuming CanvasAssignment is defined.
// rules?: any; // Assuming 'rules' is of unknown type, so using 'any' here.
}