auth-backend-module-okta-provider: add "additionalScopes" to config schema

Signed-off-by: Michał Prokopowicz <michael.prokopowicz@gmail.com>
This commit is contained in:
Michał Prokopowicz
2024-01-06 21:03:56 +01:00
parent ae28f1266c
commit cd5114c6a5
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-auth-backend-module-okta-provider': patch
---
Added missing "additionalScopes" option to configuration schema.
+1
View File
@@ -29,6 +29,7 @@ export interface Config {
authServerId?: string;
idp?: string;
callbackUrl?: string;
additionalScopes?: string;
};
};
};