feat(KB-069): add Archive All Done feature

- Add archiveAllDone method to TaskStore with filtering and batch archive
- Add POST /tasks/archive-all-done API endpoint with tests
- Add useTasks hook support and API function for archiveAllDone
- Add Archive All button to done column header in Board UI
- Wire up onArchiveAllDone through Board component hierarchy
This commit is contained in:
gsxdsm
2026-03-30 16:50:34 -07:00
parent c71347930f
commit 360f3e03b3
11 changed files with 293 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
---
"@dustinbyrne/kb": patch
---
Add "Archive All Done" button to the Done column header. This feature allows users to archive all tasks in the "done" column in a single action, with a confirmation dialog and success toast notification. The bulk archive operation uses concurrent processing for efficiency.