feat(ui): BOTS section in member list

Members API appends server bots (is_bot). Sidebar groups ONLINE / OFFLINE / BOTS.
Bots get green BOT badge, no kick menu or profile. Mentions and DMs skip bots.
This commit is contained in:
2026-07-15 20:37:05 -04:00
parent 038ac1fe8e
commit a277c78e2c
5 changed files with 63 additions and 16 deletions
+2
View File
@@ -9,6 +9,8 @@ export interface Member {
avatar: string;
status: "online" | "idle" | "dnd" | "offline";
status_text: string;
is_bot?: boolean;
bot_type?: string;
}
interface MemberState {