`GET /api/plugins/holographic/curation/activity` — recent deterministic curator events.
(
State(state): State<DashboardState>,
JsonQuery(params): JsonQuery<LimitParams>,
)
| 387 | |
| 388 | /// `GET /api/plugins/holographic/curation/activity` — recent deterministic curator events. |
| 389 | pub(crate) async fn curation_activity( |
| 390 | State(state): State<DashboardState>, |
| 391 | JsonQuery(params): JsonQuery<LimitParams>, |
| 392 | ) -> Json<Value> { |
| 393 | let limit = coerce_limit(params.limit, 100, 300); |
| 394 | Json(memory_service::curation_activity_payload(&state, limit).await) |
| 395 | } |
| 396 | |
| 397 | /// `GET /api/plugins/holographic/curation/runs` — recent standalone |
| 398 | /// automation backend runs, loaded from the append-only project sidecar ledger. |
nothing calls this directly
no test coverage detected