diff options
Diffstat (limited to 'src/api/endpoints/posts/reactions/create.ts')
| -rw-r--r-- | src/api/endpoints/posts/reactions/create.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/api/endpoints/posts/reactions/create.ts b/src/api/endpoints/posts/reactions/create.ts index a3b25baa6a..ba5b69ada3 100644 --- a/src/api/endpoints/posts/reactions/create.ts +++ b/src/api/endpoints/posts/reactions/create.ts @@ -26,7 +26,10 @@ module.exports = (params, user) => new Promise(async (res, rej) => { 'laugh', 'hmm', 'surprise', - 'congrats' + 'congrats', + 'angry', + 'confused', + 'pudding' ]).$; if (reactionErr) return rej('invalid reaction param'); |