diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-05-28 12:44:50 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-05-28 12:44:50 +0100 |
commit | 79fab46b2dfa7b40d37ee44024adab006bcaaea3 (patch) | |
tree | f78830676260961d1eaee4e06caa708d4653da69 /plugins/mod_admin_telnet.lua | |
parent | 66aebcb1089d4d10ffeea81a8abfc1fa294449ba (diff) | |
parent | 496c55391e317de94d5d62cba4088e5f93aae253 (diff) | |
download | prosody-79fab46b2dfa7b40d37ee44024adab006bcaaea3.tar.gz prosody-79fab46b2dfa7b40d37ee44024adab006bcaaea3.zip |
Merge 0.10->trunk
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 = {}; |