diff options
author | Kim Alvefur <zash@zash.se> | 2017-08-24 21:51:11 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-08-24 21:51:11 +0200 |
commit | c67e6b25db879d987bfaa159796b6f2e48ebe80a (patch) | |
tree | f596211057766159319bf83b8eb6a0c2f9f3bea1 | |
parent | d984a6dbff1f060c6276f13f7bf7369b868f94ed (diff) | |
download | prosody-c67e6b25db879d987bfaa159796b6f2e48ebe80a.tar.gz prosody-c67e6b25db879d987bfaa159796b6f2e48ebe80a.zip |
mod_register: Add comments saying which section handles password change, account deletion and which is in-band registration
-rw-r--r-- | plugins/mod_register.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index 832dd991..b39ce090 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -91,6 +91,7 @@ module:hook("stream-features", function(event) features:add_child(register_stream_feature); end); +-- Password change and account deletion handler local function handle_registration_stanza(event) local session, stanza = event.origin, event.stanza; local log = session.log or module._log; @@ -207,6 +208,7 @@ local function check_throttle(ip) return throttle:poll(1); end +-- In-band registration module:hook("stanza/iq/jabber:iq:register:query", function(event) local session, stanza = event.origin, event.stanza; local log = session.log or module._log; |