feat(ui): unfinished planning session dialog

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
mika kuns
2026-04-23 19:12:59 +02:00
parent 506caa2c53
commit 47b49743c0
8 changed files with 185 additions and 1 deletions

View File

@@ -7,4 +7,5 @@ public interface IWorkerClient
Task ResumePlanningSessionAsync(string taskId, CancellationToken ct = default);
Task DiscardPlanningSessionAsync(string taskId, CancellationToken ct = default);
Task FinalizePlanningSessionAsync(string taskId, bool queueAgentTasks = true, CancellationToken ct = default);
Task<int> GetPendingDraftCountAsync(string taskId, CancellationToken ct = default);
}