feat: refine web analytics and history views

This commit is contained in:
Wyndham ARR
2026-08-02 12:56:22 +08:00
parent a891c0ae7a
commit 7e7470821b
37 changed files with 2088 additions and 361 deletions

View File

@@ -346,6 +346,12 @@ class FakeCompanyCoordinator:
for index in range(offset, min(offset + limit, 72))
], 72
def list_month_counts(self) -> list[Dict[str, Any]]:
return [
{"month_key": "2026-07", "company_count": 4},
{"month_key": "2026-06", "company_count": 1},
]
def get_job(self, job_id: str) -> Dict[str, Any]:
return {"job_id": job_id, "state": "succeeded"}