Skip to content

Commit

Permalink
fix(orchestrator): fixed broken workflow viewer (janus-idp#1717)
Browse files Browse the repository at this point in the history
  • Loading branch information
batzionb committed May 27, 2024
1 parent 3b14d9c commit 19cc79b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions plugins/orchestrator-backend/src/OrchestratorPlugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});
},
});
},
Expand Down

0 comments on commit 19cc79b

Please sign in to comment.