feat(mma): Enable manual ticket approval via Hook API for Step Mode

This commit is contained in:
2026-05-02 13:48:14 -04:00
parent 9f67a31b2f
commit 7fdf6c9782
4 changed files with 35 additions and 2 deletions
+1 -1
View File
@@ -3450,7 +3450,7 @@ def hello():
def bulk_execute(self) -> None:
for tid in self.ui_selected_tickets:
t = next((t for t in self.active_tickets if str(t.get('id', '')) == tid), None)
if t: t['status'] = 'ready'
if t: t['status'] = 'in_progress'
self._push_mma_state_update()
def bulk_skip(self) -> None: