This commit is contained in:
Adriaan J. 2025-04-24 10:29:30 +02:00 committed by GitHub
commit 6edb5f144d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
46 changed files with 10216 additions and 1054 deletions

View file

@ -4,6 +4,7 @@ import {
deleteGroupHandler,
getAllGroupsHandler,
getGroupHandler,
getGroupQuestionsHandler,
getGroupSubmissionsHandler,
putGroupHandler,
} from '../controllers/groups.js';
@ -32,4 +33,6 @@ router.get('/:groupid/questions', onlyAllowIfHasAccessToGroup, (_req, res) => {
});
});
router.get('/:groupid/questions', getGroupQuestionsHandler);
export default router;