(url, body)
| 181 | } |
| 182 | |
| 183 | export const patchRequest = (url, body) => { |
| 184 | return sessionRequest(url, "PATCH", getToken(), body); |
| 185 | } |
| 186 | |
| 187 | export const downloadFile = async (url) => { |
| 188 | url = url.startsWith("/") ? url.substring(1) : url; |
no test coverage detected