You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213 |
- import { get } from './base'
-
- export const getUserSAMLSSOUrl = () => {
- return get<{ url: string }>('/enterprise/sso/saml/login')
- }
-
- export const getUserOIDCSSOUrl = () => {
- return get<{ url: string; state: string }>('/enterprise/sso/oidc/login')
- }
-
- export const getUserOAuth2SSOUrl = () => {
- return get<{ url: string; state: string }>('/enterprise/sso/oauth2/login')
- }
|