fix: lijn toegevoegd in group router

This commit is contained in:
Adriaan Jacquet 2025-04-22 17:15:50 +02:00
parent 074c5e510a
commit 1a344088ab
2 changed files with 5 additions and 5 deletions

View file

@ -4,6 +4,7 @@ import {
deleteGroupHandler,
getAllGroupsHandler,
getGroupHandler,
getGroupQuestionsHandler,
getGroupSubmissionsHandler,
putGroupHandler,
} from '../controllers/groups.js';
@ -23,4 +24,6 @@ router.delete('/:groupid', deleteGroupHandler);
router.get('/:groupid/submissions', getGroupSubmissionsHandler);
router.get('/:groupid/questions', getGroupQuestionsHandler);
export default router;