From 7fff9ceda052ac4d4bebfc1206b27111a8500b0c Mon Sep 17 00:00:00 2001 From: juancarmore Date: Thu, 10 Apr 2025 18:52:36 +0200 Subject: [PATCH] backend: Remove apiKeyValidator from getRecordingMedia route --- backend/src/routes/recording.routes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/routes/recording.routes.ts b/backend/src/routes/recording.routes.ts index 0e7d227..8bbcdfd 100644 --- a/backend/src/routes/recording.routes.ts +++ b/backend/src/routes/recording.routes.ts @@ -47,7 +47,7 @@ recordingRouter.delete( recordingRouter.get( '/:recordingId/media', - withAuth(apiKeyValidator, tokenAndRoleValidator(UserRole.ADMIN)), + withAuth(tokenAndRoleValidator(UserRole.ADMIN)), withValidRecordingId, recordingCtrl.getRecordingMedia );