Merge pull request #2284 from jibone/add-saml-login

Add saml login to backstage
This commit is contained in:
Ben Lambert
2020-09-25 11:37:17 +02:00
committed by GitHub
14 changed files with 275 additions and 5 deletions
+7
View File
@@ -19,6 +19,7 @@ import {
gitlabAuthApiRef,
oktaAuthApiRef,
githubAuthApiRef,
samlAuthApiRef,
microsoftAuthApiRef,
} from '@backstage/core';
@@ -53,4 +54,10 @@ export const providers = [
message: 'Sign In using Okta',
apiRef: oktaAuthApiRef,
},
{
id: 'saml-auth-provider',
title: 'SAML',
message: 'Sign In using SAML',
apiRef: samlAuthApiRef,
},
];