MCPcopy Index your code
hub / github.com/callumalpass/tasknotes / updateTask

Method updateTask

src/services/TaskService.ts:1456–1461  ·  view source on GitHub ↗

* Update a task with multiple property changes following the deterministic data flow pattern * This is the centralized method for bulk task updates used by the TaskEditModal

(
		originalTask: TaskInfo,
		updates: Partial<TaskInfo> & { details?: string }
	)

Source from the content-addressed store, hash-verified

1454 * This is the centralized method for bulk task updates used by the TaskEditModal
1455 */
1456 async updateTask(
1457 originalTask: TaskInfo,
1458 updates: Partial<TaskInfo> & { details?: string }
1459 ): Promise<TaskInfo> {
1460 return this.taskUpdateService.updateTask(originalTask, updates);
1461 }
1462
1463 async updateBlockingRelationships(
1464 currentTask: TaskInfo,

Callers 1

Calls 1

updateTaskMethod · 0.65

Tested by

no test coverage detected