(hash: string, id: number)
| 28 | |
| 29 | // POST /api/workplan/done |
| 30 | export function toggleWorkPlanTodo(hash: string, id: number) { |
| 31 | return http.post("/workplan/done", { hash, id }); |
| 32 | } |
| 33 | |
| 34 | // POST /api/workplan/edit |
| 35 | export function editWorkPlanTodo(hash: string, id: number, content: string) { |
nothing calls this directly
no outgoing calls
no test coverage detected