feat(reactions): add message reactions API and web quick reactions

This commit is contained in:
2026-03-08 09:51:18 +03:00
parent 6adb8c24d7
commit 76f008d635
10 changed files with 256 additions and 8 deletions

View File

@@ -58,6 +58,12 @@ export interface Message {
is_pending?: boolean;
}
export interface MessageReaction {
emoji: string;
count: number;
reacted: boolean;
}
export interface AuthUser {
id: number;
email: string;