Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.


Description
in order to know anything about a message after it has been sent, there needs to be a way to run a callback after the
chat.postMessage()method completes.it seems that the
Response#send()(from Hubot core) method will invoke the adapter'ssend()method with the final item in themessages...array set to a function, if the user's script specified one.this means that all we need to do is pass that callback function into the
SlackClient#send()method and make sure it's used as the callback (we can set a default value of a noop function if not).this support should also be extended to
reply()andsetTopic().this would unlock use cases such as #91
Requirements (place an
xin each of the[ ])