Merge pull request #16186 from KatharinaSick/feature/bitbucket-server-auth-provider

feat(auth): add auth provider for Bitbucket Server
This commit is contained in:
Patrik Oldsberg
2023-02-13 23:06:01 +01:00
committed by GitHub
23 changed files with 1062 additions and 4 deletions
@@ -24,6 +24,7 @@ import {
oktaAuthApiRef,
microsoftAuthApiRef,
bitbucketAuthApiRef,
bitbucketServerAuthApiRef,
atlassianAuthApiRef,
oneloginAuthApiRef,
} from '@backstage/core-plugin-api';
@@ -99,6 +100,14 @@ export const DefaultProviderSettings = (props: {
icon={Star}
/>
)}
{configuredProviders.includes('bitbucketServer') && (
<ProviderSettingsItem
title="Bitbucket Server"
description="Provides authentication towards Bitbucket Server APIs"
apiRef={bitbucketServerAuthApiRef}
icon={Star}
/>
)}
</>
);
};