howdyai / botkit

Botkit is an open source developer tool for building chat bots, apps and custom integrations for major messaging platforms.
MIT License
11.44k stars 2.28k forks source link

Direct_mention not working? #2130

Closed mattw114862 closed 3 years ago

mattw114862 commented 3 years ago

I am trying to get the bot to only respond to direct messages example @sdbot outages and it would respond but nothing is happening Am I doing something wrong here?

controller.hears(async (message) => message.text && message.text.toLowerCase() === 'outage', ['direct_message'], async (bot, message) => { await bot.reply(message, 'Here is a list of open Problem Records:'); });

mattw114862 commented 3 years ago

Was able to resolve was missing SlackMessageTypeMiddleware } = require('botbuilder-adapter-slack');