mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
modulemanager: Added module API function to get all items for a given host based on a key
This commit is contained in:
parent
d772917f2d
commit
ff0bd781d2
1 changed files with 13 additions and 0 deletions
|
@ -443,6 +443,19 @@ function api:remove_item(key, value)
|
|||
end
|
||||
end
|
||||
|
||||
function api:get_host_items(key)
|
||||
local result = {};
|
||||
for mod_name, module in pairs(modulemap[self.host]) do
|
||||
module = module.module;
|
||||
if module.items then
|
||||
for _, item in ipairs(module.items[key] or NULL) do
|
||||
t_insert(result, item);
|
||||
end
|
||||
end
|
||||
end
|
||||
return result;
|
||||
end
|
||||
|
||||
--------------------------------------------------------------------
|
||||
|
||||
local actions = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue