From dd7fa21e27e2729cd2ce9d39bfdeed7bb0625292 Mon Sep 17 00:00:00 2001 From: Tim Hansen Date: Thu, 25 Mar 2021 10:53:45 -0600 Subject: [PATCH] Add auth0 to DefaultProviderSettings Signed-off-by: Tim Hansen --- .changeset/tricky-lions-press.md | 5 +++++ .../components/AuthProviders/DefaultProviderSettings.tsx | 9 +++++++++ 2 files changed, 14 insertions(+) create mode 100644 .changeset/tricky-lions-press.md diff --git a/.changeset/tricky-lions-press.md b/.changeset/tricky-lions-press.md new file mode 100644 index 0000000000..f648b95ac8 --- /dev/null +++ b/.changeset/tricky-lions-press.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-user-settings': patch +--- + +Adds Auth0 to the default Authentication Providers settings page diff --git a/plugins/user-settings/src/components/AuthProviders/DefaultProviderSettings.tsx b/plugins/user-settings/src/components/AuthProviders/DefaultProviderSettings.tsx index b9c7b763b6..d9fa996d85 100644 --- a/plugins/user-settings/src/components/AuthProviders/DefaultProviderSettings.tsx +++ b/plugins/user-settings/src/components/AuthProviders/DefaultProviderSettings.tsx @@ -14,6 +14,7 @@ * limitations under the License. */ import { + auth0AuthApiRef, githubAuthApiRef, gitlabAuthApiRef, googleAuthApiRef, @@ -63,6 +64,14 @@ export const DefaultProviderSettings = ({ configuredProviders }: Props) => ( icon={Star} /> )} + {configuredProviders.includes('auth0') && ( + + )} {configuredProviders.includes('okta') && (