dify/web/service/enterprise.ts
2024-04-18 17:33:32 +08:00

15 lines
410 B
TypeScript

import { get } from './base'
import type { EnterpriseFeatures } from '@/types/enterprise'
export const getEnterpriseFeatures = () => {
return get<EnterpriseFeatures>('/enterprise-features')
}
export const getSAMLSSOUrl = () => {
return get<{ url: string }>('/enterprise/sso/saml/login')
}
export const getOIDCSSOUrl = () => {
return get<{ url: string; state: string }>('/enterprise/sso/oidc/login')
}