mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
When combined with mod_muc_poltergeist mod_muc_call allows for enabling call features using a proper ext_events.lib.lua implementation. By default when the module is configured only stub implementations are used for ext_events.lib.lua as these are unique between deployments.
18 lines
439 B
Lua
18 lines
439 B
Lua
-- invite will perform the trigger for external call invites.
|
|
-- This trigger is left unimplemented. The implementation is expected
|
|
-- to be specific to the deployment.
|
|
local function invite(stanza, url)
|
|
module:log(
|
|
"warn",
|
|
"A module has been configured that triggers external events."
|
|
)
|
|
module:log("warn", "Implement this lib to trigger external events.")
|
|
end
|
|
|
|
|
|
local ext_events = {
|
|
invite = invite
|
|
}
|
|
|
|
return ext_events
|