Modify ChatConversationApi to include pause state in status_count (vibe-kanban 4f35bf71)

If the workflow generating a message is paused, the status\_count should count it as paused.
This commit is contained in:
QuantumGhost
2026-01-27 18:12:13 +08:00
parent d289cf4824
commit 6cd62971c8
5 changed files with 230 additions and 1 deletions

View File

@ -90,6 +90,7 @@ status_count_model = console_ns.model(
"success": fields.Integer,
"failed": fields.Integer,
"partial_success": fields.Integer,
"paused": fields.Integer,
},
)