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:
Kim Alvefur 2021-10-13 20:46:04 +02:00
parent 21eeadecc7
commit e1d1be0068

View file

@ -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