# HG changeset patch # User Kim Alvefur # Date 1644959680 -3600 # Node ID ec16fb7062476d7de2938c58d568cdadf64ab8eb # Parent aa7a8aa64d3ffab98482f05bb5dd0bb06ae2786e mod_admin_shell: Fix description of muc:room() (thanks Link Mauve) But then this is the internal API which is weird and unfriendly to expose externally. Lots of methods to wrap tho ... one day. diff -r aa7a8aa64d3f -r ec16fb706247 plugins/mod_admin_shell.lua --- a/plugins/mod_admin_shell.lua Tue Feb 15 21:51:52 2022 +0100 +++ b/plugins/mod_admin_shell.lua Tue Feb 15 22:14:40 2022 +0100 @@ -274,7 +274,7 @@ -- TODO `muc:room():foo()` commands print [[muc:create(roomjid, { config }) - Create the specified MUC room with the given config]] print [[muc:list(host) - List rooms on the specified MUC component]] - print [[muc:room(roomjid) - Create the specified MUC room with the given config]] + print [[muc:room(roomjid) - Reference the specified MUC room to access MUC API methods]] elseif section == "server" then print [[server:version() - Show the server's version number]] print [[server:uptime() - Show how long the server has been running]]