(threadId, path = '/')
| 18 | } |
| 19 | |
| 20 | export const getViewerFileSystemTree = (threadId, path = '/') => { |
| 21 | const query = buildViewerQuery(threadId, path) |
| 22 | return apiGet(`/api/viewer/filesystem/tree?${query}`) |
| 23 | } |
| 24 | |
| 25 | export const getViewerFileContent = (threadId, path) => { |
| 26 | const query = buildViewerQuery(threadId, path) |
nothing calls this directly
no test coverage detected