Get statistics for dashboard
(token: str = Depends(verify_admin_token))
| 1468 | |
| 1469 | @router.get("/api/stats") |
| 1470 | async def get_stats(token: str = Depends(verify_admin_token)): |
| 1471 | """Get statistics for dashboard""" |
| 1472 | return await db.get_dashboard_stats() |
| 1473 | |
| 1474 | |
| 1475 | @router.get("/api/logs") |
nothing calls this directly
no test coverage detected