(organizationName: string, username: string)
| 8 | }; |
| 9 | |
| 10 | export const workspaceQuota = (organizationName: string, username: string) => { |
| 11 | return { |
| 12 | queryKey: getWorkspaceQuotaQueryKey(organizationName, username), |
| 13 | queryFn: () => API.getWorkspaceQuota(organizationName, username), |
| 14 | }; |
| 15 | }; |
| 16 | |
| 17 | export const getWorkspaceResolveAutostartQueryKey = (workspaceId: string) => [ |
| 18 | workspaceId, |
no test coverage detected