feat(bot): add dockerfile for JS rewrite, fix some loose ends (#210)

This commit is contained in:
41666 2021-04-03 17:53:05 -04:00 committed by GitHub
parent 7ec603cf70
commit 3190d41a9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 23 additions and 32 deletions

View file

@ -22,6 +22,11 @@ function messageEventListener(message) {
channel.send(`:beginner: Assign your roles here! ${appUrl}/s/${guildId}`);
}
const client = new Client();
const client = new Client({
ws: {
intents: ['GUILDS', 'GUILD_MESSAGES'],
},
});
client.on('message', (message) => messageEventListener(message));
client.login(botToken);