diff --git a/src/models/Message.ts b/src/models/Message.ts index 305f1326..de32e6a7 100644 --- a/src/models/Message.ts +++ b/src/models/Message.ts @@ -126,6 +126,7 @@ export interface Reaction { count: number; //// not saved in the database // me: boolean; // whether the current user reacted using this emoji emoji: PartialEmoji; + user_ids?: string[]; } export interface PartialEmoji { @@ -160,6 +161,7 @@ export const EmbedImage = { const Reaction = { count: Number, + user_ids: [String], emoji: { id: String, name: String,