(threadId, path)
| 28 | } |
| 29 | |
| 30 | export const downloadViewerFile = (threadId, path) => { |
| 31 | const query = buildViewerQuery(threadId, path) |
| 32 | return apiGet(`/api/viewer/filesystem/download?${query}`, {}, true, 'blob') |
| 33 | } |
| 34 | |
| 35 | export const deleteViewerFile = (threadId, path) => { |
| 36 | const query = buildViewerQuery(threadId, path) |
nothing calls this directly
no test coverage detected