diff options
author | Kim Alvefur <zash@zash.se> | 2021-11-23 17:59:40 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-11-23 17:59:40 +0100 |
commit | 2388b800b2370b7dae55d7f1e40420ab845b3b5a (patch) | |
tree | 1c408b27dca56c24825907f7cc8ffae17c4c104b | |
parent | fa22d40ba35519453adbfb3fa900035f30e7c1d6 (diff) | |
download | prosody-2388b800b2370b7dae55d7f1e40420ab845b3b5a.tar.gz prosody-2388b800b2370b7dae55d7f1e40420ab845b3b5a.zip |
mod_admin_shell: List net providers in module:info
-rw-r--r-- | plugins/mod_admin_shell.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index a9b855d6..f8f56528 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -430,6 +430,7 @@ function def_env.module:info(name, hosts) ["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, + ["net-provider"] = function(item) return item.name; end, }; for host in hosts do |