Complete workplan state model cleanup

This commit is contained in:
2026-05-18 01:31:36 +02:00
parent 98b2cb6484
commit d6522a9a40
42 changed files with 789 additions and 310 deletions

View File

@@ -19,9 +19,12 @@ class TopicTotals(BaseModel):
class WorkstreamTotals(BaseModel):
proposed: int = 0
ready: int = 0
active: int = 0
blocked: int = 0
completed: int = 0
backlog: int = 0
finished: int = 0
archived: int = 0
total: int = 0