ServiceNowDevProgram / sn-slack-points-thing

[Deprecated, see readme] Repository for the Points Thing Slack Bot Running on ServiceNow
9 stars 34 forks source link

Moves the chat.postMessage REST message to a script include #2

Closed earlduque closed 5 years ago

earlduque commented 6 years ago

Moves the chat.postMessage REST message to a script include so that sending chats to Slack will be easier for future business rules as more features are added.

To send a message a slack message now all you have to do is include:

var response = new SlackClient().sendChat(channel, message, thread_timestamp);

channel is the slack channel ID to post the message in, message is the text you want the bot to say, thread_timestamp, if provided, will post the chat into the indicated thread.

SN-AJB commented 5 years ago

Committed!