fix: show scheduled kanban tasks in dashboard

This commit is contained in:
roycepersonalassistant
2026-05-18 20:25:40 -07:00
committed by Teknium
parent a5c2836b07
commit 6c4f11c64a
3 changed files with 35 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ from toolsets import get_toolset_names
# Constants
# ---------------------------------------------------------------------------
VALID_STATUSES = {"triage", "todo", "ready", "running", "blocked", "done", "archived"}
VALID_STATUSES = {"triage", "todo", "scheduled", "ready", "running", "blocked", "done", "archived"}
VALID_WORKSPACE_KINDS = {"scratch", "worktree", "dir"}
KNOWN_TOOLSET_NAMES = frozenset(name.casefold() for name in get_toolset_names())
_IS_WINDOWS = sys.platform == "win32"