fix: consistente naamgeving

This commit is contained in:
Gabriellvl 2025-03-07 10:55:44 +01:00
parent 037763a810
commit 3b71c80be6
11 changed files with 17 additions and 17 deletions

View file

@ -1,34 +0,0 @@
import express from 'express'
const router = express.Router();
// root endpoint used to search objects
router.get('/', (req, res) => {
res.json({
groups: [
'0',
'1',
]
});
});
// information about a group (members, ... [TODO DOC])
router.get('/:id', (req, res) => {
res.json({
id: req.params.id,
assignment: '0',
students: [ '0' ],
submissions: [ '0' ],
// reference to other endpoint
// should be less hardcoded
questions: `/group/${req.params.id}/question`,
});
})
// the list of questions a group has made
router.get('/:id/question', (req, res) => {
res.json({
questions: [ '0' ],
});
})
export default router