mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
moduleapi: Allow soft dependencies via module:depends(mod, true)
This commit is contained in:
parent
83e4560a6c
commit
1bb0fa47bc
2 changed files with 7 additions and 2 deletions
|
@ -136,10 +136,14 @@ function api:require(lib)
|
|||
return f();
|
||||
end
|
||||
|
||||
function api:depends(name)
|
||||
function api:depends(name, soft)
|
||||
local modulemanager = require"prosody.core.modulemanager";
|
||||
if self:get_option_inherited_set("modules_disabled", {}):contains(name) then
|
||||
error("Dependency on disabled module mod_"..name);
|
||||
if not soft then
|
||||
error("Dependency on disabled module mod_"..name);
|
||||
end
|
||||
self:log("debug", "Not loading disabled soft dependency mod_%s", name);
|
||||
return nil, "disabled";
|
||||
end
|
||||
if not self.dependencies then
|
||||
self.dependencies = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue