Merge branch 'dev' into feat/question-routes

This commit is contained in:
Gabriellvl 2025-04-07 17:55:37 +02:00 committed by GitHub
commit 0dafb2a3f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 169 additions and 12 deletions

View file

@ -11,7 +11,7 @@ router.post('/', createGroupHandler);
// Information about a group (members, ... [TODO DOC])
router.get('/:groupid', getGroupHandler);
router.get('/:groupid', getGroupSubmissionsHandler);
router.get('/:groupid/submissions', getGroupSubmissionsHandler);
// The list of questions a group has made
router.get('/:id/questions', (_req, res) => {