fix(beads): use hq prefix for channel bead IDs

Change ChannelBeadID to use hq-channel-* prefix instead of gt-channel-*
to match the town-level beads database prefix, fixing the "prefix mismatch"
error when creating channels.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gastown/crew/george
2026-01-14 21:25:36 -08:00
committed by Steve Yegge
parent 2ffc8e8712
commit 7bbc09230e
2 changed files with 8 additions and 7 deletions

View File

@@ -213,9 +213,9 @@ func TestChannelBeadID(t *testing.T) {
name string
want string
}{
{"alerts", "gt-channel-alerts"},
{"builds", "gt-channel-builds"},
{"team-updates", "gt-channel-team-updates"},
{"alerts", "hq-channel-alerts"},
{"builds", "hq-channel-builds"},
{"team-updates", "hq-channel-team-updates"},
}
for _, tt := range tests {