(params:object)
| 23 | return await request.get(`${project_base_url}/ui/collections?${str}`) |
| 24 | } |
| 25 | const createRetrieval = async (params:object) => { |
| 26 | |
| 27 | const project_base_url = `api/v1` |
| 28 | return await request.post(`${project_base_url}/collections`, params) |
| 29 | } |
| 30 | const deleteRetrieval = async (id:string) => { |
| 31 | |
| 32 | const project_base_url = `api/v1` |
no outgoing calls
no test coverage detected