aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2015-08-10 22:13:02 +0200
committerKim Alvefur <zash@zash.se>2015-08-10 22:13:02 +0200
commit502f7ef0f4bd40559bb49e7440377626d630224f (patch)
treef597c6c7674580ed33d3c4a12c546a4ae7368aaf /plugins
parente6fa50c5a6bffd60183ce1afa0c84c69223f8c73 (diff)
downloadprosody-502f7ef0f4bd40559bb49e7440377626d630224f.tar.gz
prosody-502f7ef0f4bd40559bb49e7440377626d630224f.zip
mod_component: Fire an event on successful component authentication (For Goffi)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_component.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_component.lua b/plugins/mod_component.lua
index 7bc0f5b7..11abab79 100644
--- a/plugins/mod_component.lua
+++ b/plugins/mod_component.lua
@@ -85,6 +85,7 @@ function module.add_host(module)
session.type = "component";
module:log("info", "External component successfully authenticated");
session.send(st.stanza("handshake"));
+ module:fire_event("component-authenticated", { session = session });
return true;
end