chore: fix experimental flag

Signed-off-by: benjdlambert <ben@blam.sh>
This commit is contained in:
benjdlambert
2025-09-08 15:14:05 +02:00
parent 75b5880cb7
commit a4b9f94d4f
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -2,4 +2,4 @@
'@backstage/plugin-mcp-actions-backend': patch
---
Proxy `/.well-known/oauth-authorization-server` to `/.well-known/openid-configuration` on `auth-backend` when `auth.experimental.enableDynamicClientRegistration` is enabled.
Proxy `/.well-known/oauth-authorization-server` to `/.well-known/openid-configuration` on `auth-backend` when `auth.experimentalDynamicClientRegistration.enabled` is enabled.
+1 -1
View File
@@ -2,4 +2,4 @@
'@backstage/plugin-auth-backend': patch
---
Implementing Dynamic Client Registration with the OIDC server. You can enable this by setting `auth.experimental.enableDynamicClientRegistration` in `app-config.yaml`. This is highly experimental, but feedback welcome.
Implementing Dynamic Client Registration with the OIDC server. You can enable this by setting `auth.experimentalDynamicClientRegistration.enabled` in `app-config.yaml`. This is highly experimental, but feedback welcome.
+1 -1
View File
@@ -164,7 +164,7 @@ export async function createRouter(
httpAuth,
enableDynamicClientRegistration:
config.getOptionalBoolean(
'auth.experimental.enableDynamicClientRegistration',
'auth.experimentalDynamicClientRegistration.enabled',
) ?? false,
});
+1 -1
View File
@@ -81,7 +81,7 @@ export const mcpPlugin = createBackendPlugin({
if (
config.getOptionalBoolean(
'auth.experimental.enableDynamicClientRegistration',
'auth.experimentalDynamicClientRegistration.enabled',
)
) {
// This should be replaced with throwing a WWW-Authenticate header, but that doesn't seem to be supported by