(query_params: Dict[str, Any], _body: Dict[str, Any])
| 198 | ) |
| 199 | |
| 200 | |
| 201 | def _api_activity(query_params: Dict[str, Any], _body: Dict[str, Any]) -> Dict[str, Any]: |
| 202 | return agents.recent_activity( |
| 203 | _required_user(query_params), |
| 204 | days=int(query_params.get("days") or 14), |
| 205 | limit=int(query_params.get("limit") or 80), |
| 206 | ) |
| 207 | |
| 208 |
nothing calls this directly
no test coverage detected