Merge pull request #23931 from drodil/signals_auth_skip

fix: allow unauthenticated signals connection to fix 401
This commit is contained in:
Patrik Oldsberg
2024-04-02 11:53:19 +02:00
committed by GitHub
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-signals-backend': patch
---
Fix unauthorized signals connection by allowing unauthenticated requests
+1 -1
View File
@@ -58,7 +58,7 @@ export const signalsPlugin = createBackendPlugin({
}),
);
httpRouter.addAuthPolicy({
path: '/health',
path: '/',
allow: 'unauthenticated',
});
},