From 3e808235d7efe3183d00f6d0a8599c49fa7cd5b2 Mon Sep 17 00:00:00 2001 From: Tibo De Peuter Date: Wed, 14 May 2025 19:21:34 +0200 Subject: [PATCH] fix(backend): Typo --- backend/src/routes/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/routes/auth.ts b/backend/src/routes/auth.ts index da6f3305..ce9ee866 100644 --- a/backend/src/routes/auth.ts +++ b/backend/src/routes/auth.ts @@ -18,7 +18,7 @@ router.get('/testStudentsOnly', studentsOnly, (_req, res) => { }); router.get('/testTeachersOnly', teachersOnly, (_req, res) => { - /* #swagger.security = [{ { "teacherProduction": [ ] }, { "teacherStaging": [ ] }, { "teacherDev": [ ] }] */ + /* #swagger.security = [{ "teacherProduction": [ ] }, { "teacherStaging": [ ] }, { "teacherDev": [ ] }] */ res.json({ message: 'If you see this, you should be a teacher!' }); });