From e54db4d03de909c4749895403a03273d29635f5d Mon Sep 17 00:00:00 2001 From: DaKheera47 Date: Sat, 17 Jan 2026 02:03:47 +0000 Subject: [PATCH] gatekeep ukvisajob search --- orchestrator/src/server/app.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/orchestrator/src/server/app.ts b/orchestrator/src/server/app.ts index 3ec66ce..88b376b 100644 --- a/orchestrator/src/server/app.ts +++ b/orchestrator/src/server/app.ts @@ -37,7 +37,6 @@ function createBasicAuthGuard() { function isPublicReadOnlyRoute(method: string, path: string): boolean { const normalizedMethod = method.toUpperCase(); const normalizedPath = path.split('?')[0] || path; - if (normalizedMethod === 'POST' && normalizedPath === '/api/ukvisajobs/search') return true; if (normalizedMethod === 'POST' && normalizedPath === '/api/visa-sponsors/search') return true; return false; }