mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
modulemanager: Allow modules to expose module.ready - to be called after init
This is a shortcut for module:on_ready() which exposes the functionality in an idiomatic way consistent with module.load, module.unload, etc. module.ready runs when the module is loaded and the server has finished starting up.
This commit is contained in:
parent
f82d804e1d
commit
8a38b5d0da
1 changed files with 4 additions and 0 deletions
|
@ -293,6 +293,10 @@ local function do_load_module(host, module_name, state)
|
|||
ok, err = do_load_module(host, module_name);
|
||||
end
|
||||
end
|
||||
|
||||
if module_has_method(pluginenv, "ready") then
|
||||
pluginenv.module:on_ready(pluginenv.module.ready);
|
||||
end
|
||||
end
|
||||
if not ok then
|
||||
modulemap[api_instance.host][module_name] = nil;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue