chore: tidying up a little bit ready for release

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-07-29 10:13:25 +02:00
parent 652fe188ca
commit cd0a49fd6b
3 changed files with 4 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
---
'@backstage/plugin-auth-backend': minor
'@backstage/plugin-auth-backend': patch
---
Added the disableRefresh option to the OAuth2 config
Added the `disableRefresh` option to the `OAuth2` config
+1
View File
@@ -65,6 +65,7 @@ export interface Config {
authorizationUrl: string;
tokenUrl: string;
scope?: string;
disableRefresh?: boolean;
};
};
oidc?: {
@@ -190,7 +190,7 @@ export const createOAuth2Provider = (
});
return OAuthAdapter.fromConfig(globalConfig, provider, {
disableRefresh: disableRefresh,
disableRefresh,
providerId,
tokenIssuer,
});