mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
core.moduleapi: Record reverse dependencies
Useful to know why a module was auto-loaded without having to dig trough all other modules for the one that depends on it.
This commit is contained in:
parent
4d46c27840
commit
32445b3082
1 changed files with 4 additions and 0 deletions
|
@ -169,6 +169,10 @@ function api:depends(name)
|
|||
end
|
||||
end
|
||||
self.dependencies[name] = true;
|
||||
if not mod.module.reverse_dependencies then
|
||||
mod.module.reverse_dependencies = {};
|
||||
end
|
||||
mod.module.reverse_dependencies[self.name] = true;
|
||||
return mod;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue