MCPcopy Create free account
hub / github.com/LeoninCS/DevDesk / editWorkPlanTodo

Function editWorkPlanTodo

frontend/src/api/workplan.ts:35–37  ·  view source on GitHub ↗
(hash: string, id: number, content: string)

Source from the content-addressed store, hash-verified

33
34// POST /api/workplan/edit
35export function editWorkPlanTodo(hash: string, id: number, content: string) {
36 return http.post("/workplan/edit", { hash, id, content });
37}
38
39// POST /api/workplan/delete
40export function deleteWorkPlanTodo(hash: string, id: number) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected