Is there a way to automatically notify me when a user joins a channel? I notice that the current events I can access is the message event. My understanding is there is no way I can implement this.
sample code being.
const notifier = require('node-notifier')
function onMessageHandler (target, context, msg, self) {
if (self) { return; } // Ignore messages from the bot
if (userJoinsChannel) {
notifier.notify({
title: context['username'],
message: commandName
});
}
}