(State(state): State<DashboardState>)
| 45 | } |
| 46 | |
| 47 | pub(crate) async fn get_settings(State(state): State<DashboardState>) -> ApiResult { |
| 48 | Ok(Json(settings_payload(&state).await?)) |
| 49 | } |
| 50 | |
| 51 | pub(crate) async fn patch_project_settings( |
| 52 | State(state): State<DashboardState>, |
nothing calls this directly
no test coverage detected