Files
automatisch/packages/web/src/hooks/useAppAuthClients.js
2024-04-05 15:35:05 +01:00

18 lines
420 B
JavaScript

import { useQuery } from '@tanstack/react-query';
import api from 'helpers/api';
export default function useAppAuthClients(appKey) {
const query = useQuery({
queryKey: ['apps', appKey, 'auth-clients'],
queryFn: async ({ signal }) => {
const { data } = await api.get(`/v1/apps/${appKey}/auth-clients`, {
signal,
});
return data;
},
enabled: !!appKey,
});
return query;
}