diff options
author | Kim Alvefur <zash@zash.se> | 2015-08-10 22:13:02 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-08-10 22:13:02 +0200 |
commit | e92c2042d1d79d88ca2ca00c019fe3c849c066c9 (patch) | |
tree | f597c6c7674580ed33d3c4a12c546a4ae7368aaf | |
parent | b351da9b5f552145c3d9bab7a5e44b4c4936e78e (diff) | |
download | prosody-e92c2042d1d79d88ca2ca00c019fe3c849c066c9.tar.gz prosody-e92c2042d1d79d88ca2ca00c019fe3c849c066c9.zip |
mod_component: Fire an event on successful component authentication (For Goffi)
-rw-r--r-- | plugins/mod_component.lua | 1 |
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 |