working onelogin auth implementation

This commit is contained in:
Forrest Waters
2020-10-28 18:23:13 -05:00
parent bda622c223
commit 21e071fa6c
13 changed files with 381 additions and 1 deletions
+7
View File
@@ -21,6 +21,7 @@ import {
githubAuthApiRef,
samlAuthApiRef,
microsoftAuthApiRef,
oneloginAuthApiRef,
} from '@backstage/core';
export const providers = [
@@ -60,4 +61,10 @@ export const providers = [
message: 'Sign In using SAML',
apiRef: samlAuthApiRef,
},
{
id: 'onelogin-auth-provider',
title: 'OneLogin',
message: 'Sign In using OneLogin',
apiRef: oneloginAuthApiRef,
},
];