( organizationName: string, username: string, )
| 1 | import { API } from "#/api/api"; |
| 2 | |
| 3 | export const getWorkspaceQuotaQueryKey = ( |
| 4 | organizationName: string, |
| 5 | username: string, |
| 6 | ) => { |
| 7 | return ["workspaceQuota", organizationName, username]; |
| 8 | }; |
| 9 | |
| 10 | export const workspaceQuota = (organizationName: string, username: string) => { |
| 11 | return { |
no outgoing calls
no test coverage detected