我有一个在篝火聊天室里运行的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"