Merge pull request #7308 from FilipSwiatczak/bitbucket-auth

Bitbucket cloud authentication
This commit is contained in:
Patrik Oldsberg
2021-10-05 17:06:42 +02:00
committed by GitHub
24 changed files with 850 additions and 3 deletions
+7
View File
@@ -24,6 +24,7 @@ import {
oneloginAuthApiRef,
oauth2ApiRef,
oidcAuthApiRef,
bitbucketAuthApiRef,
} from '@backstage/core-plugin-api';
export const providers = [
@@ -81,4 +82,10 @@ export const providers = [
message: 'Sign In using OneLogin',
apiRef: oneloginAuthApiRef,
},
{
id: 'bitbucket-auth-provider',
title: 'Bitbucket',
message: 'Sign In using Bitbucket',
apiRef: bitbucketAuthApiRef,
},
];