add new tasks

This commit is contained in:
Bendt
2025-12-18 15:40:03 -05:00
parent a63aadffcb
commit 0ed7800575
16 changed files with 1095 additions and 39 deletions

View File

@@ -257,3 +257,15 @@ class TaskBackend(ABC):
True if successful
"""
pass
@abstractmethod
def edit_note_interactive(self, task_id: str) -> bool:
"""Open task notes in editor for interactive editing.
Args:
task_id: Task ID or UUID
Returns:
True if successful
"""
pass