Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #461 from seahen/issue-450-create-conversation
Browse files Browse the repository at this point in the history
Make createConversation callable on facebook bot instance
  • Loading branch information
Ben Brown authored Nov 7, 2016
2 parents 8a5e0ca + 45f3681 commit ba8c91d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Facebook.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ function Facebookbot(configuration) {
botkit.startConversation(this, message, cb);
};

bot.createConversation = function(message, cb) {
botkit.createConversation(this, message, cb);
};


bot.send = function(message, cb) {
Expand Down

0 comments on commit ba8c91d

Please sign in to comment.