mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
mod_admin_shell: Show HTTP base-URLs in module:info()
Because it's nice, not having to find it in http:list(), which could have a lot of items.
This commit is contained in:
parent
21eeadecc7
commit
e1d1be0068
1 changed files with 2 additions and 1 deletions
|
@ -420,6 +420,7 @@ function def_env.module:info(name, hosts)
|
|||
["adhoc-provider"] = function(item) return item.name; end,
|
||||
["auth-provider"] = function(item) return item.name; end,
|
||||
["storage-provider"] = function(item) return item.name; end,
|
||||
["http-provider"] = function(item, mod) return mod:http_url(item.name); end,
|
||||
};
|
||||
|
||||
for host in hosts do
|
||||
|
@ -441,7 +442,7 @@ function def_env.module:info(name, hosts)
|
|||
local formatter = item_formatters[kind];
|
||||
if formatter then
|
||||
for _, item in ipairs(items) do
|
||||
print(" - " .. formatter(item));
|
||||
print(" - " .. formatter(item, mod.module));
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue