File size: 515 Bytes
3206347 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import { useQuery } from '@tanstack/react-query';
import api from 'helpers/api';
export default function useSamlAuthProvider({ samlAuthProviderId } = {}) {
const query = useQuery({
queryKey: ['samlAuthProviders', samlAuthProviderId],
queryFn: async ({ signal }) => {
const { data } = await api.get(
`/v1/admin/saml-auth-providers/${samlAuthProviderId}`,
{
signal,
},
);
return data;
},
enabled: !!samlAuthProviderId,
});
return query;
}
|