feat: retire per-channel private flag on profile page

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NfPpSpccTWBfZg1FTveyaU
This commit is contained in:
2026-07-09 16:53:55 -04:00
co-authored by Claude Fable 5
parent ca2868a888
commit 5fe069a1a2
2 changed files with 3 additions and 13 deletions
+1 -1
View File
@@ -1058,7 +1058,7 @@ async def start(
"name": name,
"type": cfg.get("type", ""),
"owner": cfg.get("owner"),
"private": bool(cfg.get("private", False)),
"private": not config_access.is_global(cfg),
}
for name, cfg in visible_channels.items()
if isinstance(cfg, dict)