diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-05-28 12:43:34 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-05-28 12:43:34 +0100 |
commit | de783efad25172674d477833d50eb5d3526b7430 (patch) | |
tree | 5a08f9daaa6f1c4fdf7bf3e626772c2c17ca7683 /plugins/mod_admin_telnet.lua | |
parent | 332ebb57f74b37edaabd1c21ee157e217cfd48fb (diff) | |
download | prosody-de783efad25172674d477833d50eb5d3526b7430.tar.gz prosody-de783efad25172674d477833d50eb5d3526b7430.zip |
mod_admin_telnet: Add command to list MUC rooms
Diffstat (limited to 'plugins/mod_admin_telnet.lua')
-rw-r--r-- | plugins/mod_admin_telnet.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 9761d2f3..66560d44 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -964,6 +964,19 @@ function def_env.muc:room(room_jid) return setmetatable({ room = room_obj }, console_room_mt); end +function def_env.muc:list(host) + local host_session = hosts[host]; + if not host_session or not host_session.modules.muc then + return nil, "Please supply the address of a local MUC component"; + end + local c = 0; + for name in keys(host_session.modules.muc.rooms) do + print(name); + c = c + 1; + end + return true, c.." rooms"; +end + local um = require"core.usermanager"; def_env.user = {}; |