docs: fix 3 more stale dashboard.rs refs argus caught in review

hive-c0re/src/dashboard.rs became a module directory
(hive-c0re/src/dashboard/) a while back; three more references to it
as a single file survived the #3281 sweep (conventions.md x2,
web-ui/shape.md's StateSnapshot pointer). Same bug class the sweep
was hunting for, argus caught it in review.
This commit is contained in:
iris 2026-08-15 12:03:33 +02:00 committed by mara
commit 4f03a82cc5
2 changed files with 5 additions and 3 deletions

View file

@ -408,7 +408,8 @@ bypass the operator approval gate.
**Adding a new capability** — add a variant to `Capability` in
`hive-sh4re/src/lib.rs` + an arm to `as_str`. Add it to `Capability::ALL` (the
source of truth for the permissions UI columns). Implement the access check in
the relevant handler (`agent_server.rs`, `mcp.rs`, or `dashboard.rs`).
the relevant handler (`agent_server.rs`, `mcp.rs`, or a handler under
`hive-c0re/src/dashboard/`).
## Async forms
@ -441,7 +442,7 @@ sufficient to recover.
## Actions are factored
`approve` / `deny` / `destroy` (and the lifecycle helper) live in
`actions.rs` / `dashboard.rs`. The admin socket and the dashboard
`actions.rs` / `hive-c0re/src/dashboard/`. The admin socket and the dashboard
POST handlers both call into them so the two surfaces never drift.
## Commit messages