(path)
| 45 | } |
| 46 | |
| 47 | export const deleteWorkspacePath = (path) => { |
| 48 | const query = buildQuery({ path }) |
| 49 | return apiDelete(`/api/workspace/file?${query}`) |
| 50 | } |
| 51 | |
| 52 | export const createWorkspaceDirectory = (parentPath, name) => { |
| 53 | return apiPost('/api/workspace/directory', { |
nothing calls this directly
no test coverage detected