We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
notice
In #hubot, @arnaudmm was trying to use thenotice method like:
robot.hear /^!toto$/, (msg) -> robot.adapter.notice "#systest2", "tototo"
This didn't work because the first argument is an envelope object that should have a user or room. This does work:
envelope
robot.hear /^!toto$/, (msg) -> robot.adapter.notice {room:"#systest2"}, "tototo"
The text was updated successfully, but these errors were encountered:
cc hubotio/hubot#1036 for more general conversation around supporting adapter-specific responses.
Sorry, something went wrong.
No branches or pull requests
In #hubot, @arnaudmm was trying to use the
notice
method like:This didn't work because the first argument is an
envelope
object that should have a user or room. This does work:The text was updated successfully, but these errors were encountered: