MCPcopy Index your code
hub / github.com/TaskingAI/TaskingAI / deleteActions

Function deleteActions

frontend/src/axios/actions.ts:32–35  ·  view source on GitHub ↗
(id: string)

Source from the content-addressed store, hash-verified

30 return await request.post(`${project_base_url}/actions/${id}`, params)
31}
32const deleteActions = async (id: string) => {
33 const project_base_url = `api/v1`
34 return await request.delete(`${project_base_url}/actions/${id}`)
35}
36const getActionsDetail = async (id: string) => {
37 const project_base_url = `api/v1`
38 return await request.get(`${project_base_url}/actions/${id}`)

Callers 1

onDeleteConfirmFunction · 0.90

Calls 1

deleteMethod · 0.45

Tested by

no test coverage detected