From c9f39871c4049d75c4d08d5988344f96968ab320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=E2=96=88=E2=96=88=E2=96=88=E2=96=88=E2=96=88?= Date: Mon, 17 Jun 2024 14:46:12 -0400 Subject: [PATCH] Adding permission to connect to twitch IRC channel --- src/src/environments/environments-all.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/src/environments/environments-all.ts b/src/src/environments/environments-all.ts index 6425838..70b7073 100644 --- a/src/src/environments/environments-all.ts +++ b/src/src/environments/environments-all.ts @@ -11,7 +11,11 @@ export const allEnvironments = { 'moderator:manage:banned_users', // Allow you to ban in your chat and those you moderate 'channel:manage:moderators', // Allows us to make the bot account a moderator for them 'moderation:read', // Allows us to check who is a moderator - 'user:read:moderated_channels' // Allows the bot to check what channels it moderates. Doesn't hurt to have this from the user. + 'user:read:moderated_channels', // Allows the bot to check what channels it moderates. Doesn't hurt to have this from the user. + 'chat:read', // Allows bot to connect to chat channel and receive messages + 'chat:edit', // Allows bot to connect to chat channel and send messages + 'channel:moderate', // Allows bot to connect to chat channel and perform moderator functions + 'channel:bot' // Allows bot to connect to chat channel and perform bot actions ] ] }