How can I get my bot to ignore conversation until it is addressed directly?

前端 未结 4 640
遇见更好的自我
遇见更好的自我 2021-01-26 08:57

I want to add my bot to a Slack channel. But I want it to ignore conversation until it is addressed directly, e.g.:

me: hi!
me: hi!
me: @bot hi!
bot: why hello t         


        
4条回答
  •  粉色の甜心
    2021-01-26 09:40

    A quick solution could be the following:

    bot.dialog('/', [
      function(session, params) {
        if(session.message.text.includes('@bot')) {
          // ... start the conversation's flow
        }
      }
    ]);
    

    Hope it helps!

提交回复
热议问题