aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_ping.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-07-02 23:41:47 +0200
committerKim Alvefur <zash@zash.se>2018-07-02 23:41:47 +0200
commit198d96dcf50a01cf0dffd68c0e2c229cbb363659 (patch)
treef51021b0143712d1ab31e4ec81025c7192e15f2c /plugins/mod_ping.lua
parent6c922fe328bed78d8efda0560cef18a081961139 (diff)
downloadprosody-198d96dcf50a01cf0dffd68c0e2c229cbb363659.tar.gz
prosody-198d96dcf50a01cf0dffd68c0e2c229cbb363659.zip
mod_ping: Depend on mod_ahoc
Diffstat (limited to 'plugins/mod_ping.lua')
-rw-r--r--plugins/mod_ping.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_ping.lua b/plugins/mod_ping.lua
index 5559c5ca..09f78efa 100644
--- a/plugins/mod_ping.lua
+++ b/plugins/mod_ping.lua
@@ -26,6 +26,7 @@ function ping_command_handler (self, data, state) -- luacheck: ignore 212
return { info = "Pong\n"..now, status = "completed" };
end
+module:depend "adhoc";
local adhoc_new = module:require "adhoc".new;
local descriptor = adhoc_new("Ping", "ping", ping_command_handler);
module:add_item ("adhoc", descriptor);