(id: string)
| 75 | }; |
| 76 | |
| 77 | export const getAppSecrets = (id: string) => { |
| 78 | return { |
| 79 | queryKey: appSecretsKey(id), |
| 80 | queryFn: () => API.getOAuth2ProviderAppSecrets(id), |
| 81 | }; |
| 82 | }; |
| 83 | |
| 84 | export const postAppSecret = (queryClient: QueryClient) => { |
| 85 | return { |
nothing calls this directly
no test coverage detected