feat(web): add banned users section in chat info moderation
Some checks failed
CI / test (push) Failing after 2m12s

This commit is contained in:
2026-03-08 21:26:10 +03:00
parent 2f6aa86cc9
commit 775236b483
5 changed files with 103 additions and 4 deletions

View File

@@ -48,6 +48,13 @@ export interface ChatMember {
joined_at: string;
}
export interface ChatBan {
chat_id: number;
user_id: number;
banned_by_user_id: number;
created_at: string;
}
export interface ChatDetail extends Chat {
members: ChatMember[];
}