Merge pull request #22125 from mprokopowicz/okta-auth-config

auth-backend-module-okta-provider: add "additionalScopes" to config schema
This commit is contained in:
Patrik Oldsberg
2024-01-21 13:36:23 +01:00
committed by GitHub
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;
};
};
};