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

Function fetchWorkPlanTodos

frontend/src/api/workplan.ts:20–22  ·  view source on GitHub ↗
(hash: string)

Source from the content-addressed store, hash-verified

18
19// GET /api/workplan/:hash
20export function fetchWorkPlanTodos(hash: string) {
21 return http.get<{ todos: TodoItem[] }>(`/workplan/${hash}`);
22}
23
24// POST /api/workplan/add
25export function addWorkPlanTodo(hash: string, content: string) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected