From 7a97bac4bdf21015090c800160d6851f929d1c00 Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 22 May 2021 16:12:39 +0200 Subject: [PATCH] :sparkles: Message reaction user_ids --- src/models/Message.ts | 2 ++ 1 file changed, 2 insertions(+) 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,