mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_csi: Set module status based on whether a CSI handler module appears to be loaded
This commit is contained in:
parent
aa5d88fe44
commit
7c3ba237b9
1 changed files with 9 additions and 0 deletions
|
@ -21,3 +21,12 @@ end
|
|||
module:hook("stanza/"..xmlns_csi..":active", refire_event("csi-client-active"));
|
||||
module:hook("stanza/"..xmlns_csi..":inactive", refire_event("csi-client-inactive"));
|
||||
|
||||
function module.load()
|
||||
if prosody.hosts[module.host].events._handlers["csi-client-active"] then
|
||||
module:set_status("core", "CSI handler module loaded");
|
||||
else
|
||||
module:set_status("warn", "No CSI handler module loaded");
|
||||
end
|
||||
end
|
||||
module:hook("module-loaded", module.load);
|
||||
module:hook("module-unloaded", module.load);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue