dify/web/service/sso.ts
2024-05-15 16:14:49 +08:00

10 lines
252 B
TypeScript

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')
}