fix(backend): Typo

This commit is contained in:
Tibo De Peuter 2025-05-14 19:21:34 +02:00
parent 84de3cc424
commit 3e808235d7
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2

View file

@ -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!' });
});