From 19cc79bb9c1422556ddb9f85a2ac323186808321 Mon Sep 17 00:00:00 2001 From: Bat-Zion Rotman Date: Mon, 27 May 2024 13:59:22 +0300 Subject: [PATCH] fix(orchestrator): fixed broken workflow viewer (#1717) --- plugins/orchestrator-backend/src/OrchestratorPlugin.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/orchestrator-backend/src/OrchestratorPlugin.ts b/plugins/orchestrator-backend/src/OrchestratorPlugin.ts index 566cf42c27..1eca7cc558 100644 --- a/plugins/orchestrator-backend/src/OrchestratorPlugin.ts +++ b/plugins/orchestrator-backend/src/OrchestratorPlugin.ts @@ -45,6 +45,14 @@ export const orchestratorPlugin = createBackendPlugin({ httpAuth: httpAuth, }); httpRouter.use(router); + httpRouter.addAuthPolicy({ + path: '/static/generated/envelope', + allow: 'unauthenticated', + }); + httpRouter.addAuthPolicy({ + path: '/health', + allow: 'unauthenticated', + }); }, }); },