2023-04-27 21:14:50 +08:00
|
|
|
import addUserReaction from '../modifiers/addUserReaction';
|
|
|
|
|
|
|
|
export default function handleSetUserReaction({ body }, meetingId) {
|
2023-06-08 09:10:07 +08:00
|
|
|
const { userId, reactionEmoji } = body;
|
2023-04-27 21:14:50 +08:00
|
|
|
|
2023-06-08 09:10:07 +08:00
|
|
|
addUserReaction(meetingId, userId, reactionEmoji);
|
2023-04-27 21:14:50 +08:00
|
|
|
}
|