MCPcopy Create free account
hub / github.com/TaskingAI/TaskingAI / updateActions

Function updateActions

frontend/src/axios/actions.ts:28–31  ·  view source on GitHub ↗
(id: string, params: object)

Source from the content-addressed store, hash-verified

26 return await request.post(`${project_base_url}/actions/bulk_create`, params)
27}
28const updateActions = async (id: string, params: object) => {
29 const project_base_url = `api/v1`
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}`)

Callers 1

handleRequestFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected