* 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 }
)
| 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, |
no test coverage detected