From 826803109617454cbd2b777cd46679554ec6f531 Mon Sep 17 00:00:00 2001 From: Adriaan Jacquet Date: Sat, 22 Mar 2025 12:17:25 +0100 Subject: [PATCH] fix: foute endpoints in app.ts weggehaald --- backend/src/routes/router.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/backend/src/routes/router.ts b/backend/src/routes/router.ts index 639857a7..204ea3d6 100644 --- a/backend/src/routes/router.ts +++ b/backend/src/routes/router.ts @@ -22,11 +22,7 @@ router.get('/', (_, res: Response) => { }); router.use('/student', studentRouter /* #swagger.tags = ['Student'] */); -router.use('/group', groupRouter /* #swagger.tags = ['Group'] */); -router.use('/assignment', assignmentRouter /* #swagger.tags = ['Assignment'] */); -router.use('/submission', submissionRouter /* #swagger.tags = ['Submission'] */); router.use('/class', classRouter /* #swagger.tags = ['Class'] */); -router.use('/question', questionRouter /* #swagger.tags = ['Question'] */); router.use('/auth', authRouter /* #swagger.tags = ['Auth'] */); router.use('/theme', themeRoutes /* #swagger.tags = ['Theme'] */); router.use('/learningPath', learningPathRoutes /* #swagger.tags = ['Learning Path'] */);