我在篝火聊天室里运行了 hubot (https://github.com/github/hubot)。
我正在尝试制作一个脚本来显示聊天室中所有登录的用户。
默认hubot show users
命令似乎找不到所有已登录的用户。
不工作的伪代码
module.exports = (robot) ->
robot.respond /users$/i, (msg) ->
for user in robot.room.users
msg.respond user.name + "is logged in"