Add support for "SPY" channel type: updated models, ChatService, and ChannelListComponent to handle SPY channels and their name mappings.

This commit is contained in:
2026-08-01 22:01:59 +02:00
parent ed942d5ec5
commit 73ea715b01
4 changed files with 8 additions and 7 deletions
@@ -1,5 +1,5 @@
export interface ChatChannel {
name: string;
type: 'SERVER' | 'DM' | 'PARTY' | 'GAC';
type: 'SERVER' | 'DM' | 'PARTY' | 'GAC' | 'SPY';
unreadMessages: number;
}