external-auth-provider.ts 257 B

123456789
  1. export const IExternalAuthProviderType = {
  2. ldap: 'ldap',
  3. saml: 'saml',
  4. oidc: 'oidc',
  5. google: 'google',
  6. github: 'github',
  7. } as const;
  8. export type IExternalAuthProviderType = typeof IExternalAuthProviderType[keyof typeof IExternalAuthProviderType]