(threadId, path)
| 23 | } |
| 24 | |
| 25 | export const getViewerFileContent = (threadId, path) => { |
| 26 | const query = buildViewerQuery(threadId, path) |
| 27 | return apiGet(`/api/viewer/filesystem/file?${query}`) |
| 28 | } |
| 29 | |
| 30 | export const downloadViewerFile = (threadId, path) => { |
| 31 | const query = buildViewerQuery(threadId, path) |
nothing calls this directly
no test coverage detected