proxy-backend: allow unauthenticated requests

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-03-26 15:11:55 +01:00
parent ed729e7005
commit eae097ca3f
2 changed files with 9 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-proxy-backend': patch
---
Allow unauthenticated requests.
+4
View File
@@ -44,6 +44,10 @@ export default createBackendPlugin({
logger: loggerToWinstonLogger(logger),
}),
);
httpRouter.addAuthPolicy({
allow: 'unauthenticated',
path: '/',
});
},
});
},