mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_external_services: Support adding services via items API
This commit is contained in:
parent
b289d05cfb
commit
6dfae9bbfa
1 changed files with 4 additions and 2 deletions
|
@ -105,7 +105,8 @@ local function handle_services(event)
|
|||
end
|
||||
|
||||
local reply = st.reply(stanza):tag("services", { xmlns = action.attr.xmlns });
|
||||
local services = configured_services / prepare;
|
||||
local extras = module:get_host_items("external_service");
|
||||
local services = ( configured_services + extras ) / prepare;
|
||||
|
||||
local requested_type = action.attr.type;
|
||||
if requested_type then
|
||||
|
@ -149,7 +150,8 @@ local function handle_credentials(event)
|
|||
end
|
||||
|
||||
local reply = st.reply(stanza):tag("credentials", { xmlns = action.attr.xmlns });
|
||||
local services = configured_services / prepare;
|
||||
local extras = module:get_host_items("external_service");
|
||||
local services = ( configured_services + extras ) / prepare;
|
||||
services:filter(function (item)
|
||||
return item.restricted;
|
||||
end)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue