0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-13 21:30:30 -05:00

refactor(console): rename the sso connector guide path (#5060)

* refactor(console): rename the sso connector guide path

rename the sso connector path

* refactor(console): rename the sso guide

rename the sso guide
This commit is contained in:
simeng-li 2023-12-05 14:20:55 +08:00 committed by GitHub
parent e4def14e71
commit b10522a3fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 5 additions and 5 deletions

View file

@ -5,11 +5,11 @@ import { lazy, type LazyExoticComponent, type FunctionComponent } from 'react';
type GuideComponentType = LazyExoticComponent<FunctionComponent<MDXProps>>;
const ssoConnectorGuides: Readonly<{ [key in SsoProviderName]?: GuideComponentType }> = {
[SsoProviderName.SAML]: lazy(async () => import('./SAML/README.mdx')),
[SsoProviderName.OIDC]: lazy(async () => import('./OIDC/README.mdx')),
[SsoProviderName.AZURE_AD]: lazy(async () => import('./AzureAD/README.mdx')),
[SsoProviderName.GOOGLE_WORKSPACE]: lazy(async () => import('./GoogleWorkspace/README.mdx')),
[SsoProviderName.OKTA]: lazy(async () => import('./OKTA/README.mdx')),
[SsoProviderName.SAML]: lazy(async () => import('./saml/README.mdx')),
[SsoProviderName.OIDC]: lazy(async () => import('./oidc/README.mdx')),
[SsoProviderName.AZURE_AD]: lazy(async () => import('./azure-ad/README.mdx')),
[SsoProviderName.GOOGLE_WORKSPACE]: lazy(async () => import('./google-workspace/README.mdx')),
[SsoProviderName.OKTA]: lazy(async () => import('./okta/README.mdx')),
};
export default ssoConnectorGuides;