Add type, channel, and receiver fields to chat model and filter messages by PUBLIC channel type in ChatService.

This commit is contained in:
2026-07-19 22:54:35 +02:00
parent 1c2478e8d0
commit b1267068a5
2 changed files with 6 additions and 2 deletions
@@ -4,8 +4,9 @@ export interface ChatMessage {
uuid: string;
timestamp: number;
server: string;
//TODO [Stijn] [2026-07-18]: Handle channel types
//channel: Channel;
type: string;
channel: string;
receiver: string;
messageJson: MiniMessageComponent;
notBlocked: boolean;
}