fix(api): Include tracks list in get_mma_status response

This commit is contained in:
2026-05-06 21:19:55 -04:00
parent bd37aa731b
commit c36e691b8d
+2 -1
View File
@@ -1968,7 +1968,8 @@ class AppController:
"tool_stats": self._tool_stats,
"active_tier": self.active_tier,
"active_tickets": self.active_tickets,
"proposed_tracks": self.proposed_tracks
"proposed_tracks": self.proposed_tracks,
"tracks": self.tracks
}
@api.post("/api/gui", dependencies=[Depends(get_api_key)])