fixup: remove issue tags from code, use plain prose

This commit is contained in:
damocles 2026-05-31 23:05:03 +02:00 committed by mara
commit 4093f4fdb4
2 changed files with 10 additions and 10 deletions

View file

@ -269,17 +269,17 @@ struct StateSnapshot {
/// Peer hives in the same swarm. Parsed from `HYPERHIVE_PEERS`
/// (JSON array of `{label,domain}` objects, emitted by the c0re
/// NixOS module from `services.hyperhive.peers`). Empty on
/// single-hive deploys. Feeds iris's P33RS tab (#589). Each entry
/// single-hive deploys. Feeds the P33RS dashboard tab. Each entry
/// exposes `name` (the operator-chosen label) and `url` (dashboard
/// link derived as `http://<domain>/`; v0 HTTP-only - HTTPS peers
/// require gateway TLS (#593/#594)).
/// link derived as `http://<domain>/`; HTTP-only until the gateway
/// has TLS and the scheme is threaded through).
peer_hives: Vec<PeerHiveView>,
}
/// One peer hive for the P33RS dashboard tab. Derived from
/// `HYPERHIVE_PEERS` env; `url` is the peer's dashboard root so the
/// tab can render a clickable card without knowing the remote port.
/// v0: always `http://` - HTTPS peers need gateway TLS (#593/#594).
/// HTTP-only until per-peer TLS is wired through the gateway layer.
#[derive(Serialize)]
struct PeerHiveView {
name: String,