fix: branch voorbereid voor merge, conflicten opgelost
This commit is contained in:
commit
574cdba4de
58 changed files with 2441 additions and 12077 deletions
9
backend/src/routes/themes.ts
Normal file
9
backend/src/routes/themes.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import express from 'express';
|
||||
import { getThemes, getThemeByTitle } from '../controllers/themes.js';
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.get('/', getThemes);
|
||||
router.get('/:theme', getThemeByTitle);
|
||||
|
||||
export default router;
|
||||
Reference in a new issue