fix: DELETE en POST endpoints toegevoegd

This commit is contained in:
Adriaan Jacquet 2025-03-13 19:27:34 +01:00
parent 400a955850
commit 8c7d5e965c
6 changed files with 17 additions and 5 deletions

View file

@ -2,6 +2,7 @@ import { Request, Response } from 'express';
import {
createStudent,
deleteStudent,
getAllStudents,
getStudent,
getStudentAssignments,
getStudentClasses,
@ -142,7 +143,4 @@ export async function getStudentSubmissionsHandler(req: Request, res: Response):
res.json({
submissions: submissions,
});
}
function getAllStudents(): StudentDTO[] | string[] | PromiseLike<StudentDTO[] | string[]> {
throw new Error('Function not implemented.');
}
}