From 4f5b1954206eb7ac23232d7bc352159ffb951465 Mon Sep 17 00:00:00 2001 From: Max Peintner Date: Mon, 3 Apr 2023 15:27:26 +0200 Subject: [PATCH] fix(console): link to azure-ad (#5599) fix: link to azure-ad Co-authored-by: Livio Spring --- .github/pull_request_template.md | 1 + console/src/app/modules/providers/providers-routing.module.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 47b5f137d0..1272432be4 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,4 +1,5 @@ ```[tasklist] + ### Definition of Ready - [ ] I am happy with the code diff --git a/console/src/app/modules/providers/providers-routing.module.ts b/console/src/app/modules/providers/providers-routing.module.ts index 91301cf3b5..2e84b004b5 100644 --- a/console/src/app/modules/providers/providers-routing.module.ts +++ b/console/src/app/modules/providers/providers-routing.module.ts @@ -14,7 +14,7 @@ import { ProviderOAuthComponent } from './provider-oauth/provider-oauth.componen import { ProviderOIDCComponent } from './provider-oidc/provider-oidc.component'; const typeMap = { - [ProviderType.PROVIDER_TYPE_AZURE_AD]: { path: 'azure', component: ProviderAzureADComponent }, + [ProviderType.PROVIDER_TYPE_AZURE_AD]: { path: 'azure-ad', component: ProviderAzureADComponent }, [ProviderType.PROVIDER_TYPE_GITHUB]: { path: 'github', component: ProviderGithubComponent }, [ProviderType.PROVIDER_TYPE_GITHUB_ES]: { path: 'github-es', component: ProviderGithubESComponent }, [ProviderType.PROVIDER_TYPE_GITLAB]: { path: 'gitlab', component: ProviderGitlabComponent },