1
0

♻️ Extract highlight message logic to server

This commit is contained in:
2022-01-05 20:05:18 +01:00
parent e3dfe80cc4
commit 5d20cce62f
3 changed files with 45 additions and 24 deletions

View File

@@ -7,6 +7,7 @@ import { broadcast } from "../helpers/webServer";
import { getApiClient } from "../helpers/twitch";
import { getVip } from "./actions/getVip";
import { hidrate } from "./actions/hidrate";
import { highlightMessage } from "./actions/highlightMessage";
import { russianRoulette } from "./actions/russianRoulette";
import { stealVip } from "./actions/stealVip";
import { timeoutFriend } from "./actions/timeoutFriend";
@@ -52,6 +53,9 @@ async function onRedemption(message: PubSubRedemptionMessage) {
case RedemptionIds.TimeoutFriend:
await timeoutFriend(msg);
break;
case RedemptionIds.HighlightMessage:
await highlightMessage(msg);
break;
case RedemptionIds.GetVip:
msg.message = `@${msg.userDisplayName} ha encontrado diamantes!`;