* Fetch SSO providers
(signal: AbortSignal, organizationId?: string)
| 23 | * Fetch SSO providers |
| 24 | */ |
| 25 | async function fetchSSOProviders(signal: AbortSignal, organizationId?: string) { |
| 26 | return requestJson(listSsoProvidersContract, { |
| 27 | query: organizationId ? { organizationId } : {}, |
| 28 | signal, |
| 29 | }) |
| 30 | } |
| 31 | |
| 32 | /** |
| 33 | * Hook to fetch SSO providers |
no test coverage detected