diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-10 10:30:31 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-10 10:30:31 +0200 |
commit | 3dad4dc1001d0a0405c3e443b1b7e161c8536152 (patch) | |
tree | 60b81cd2e536a58d52f3a44f32d57897b1bfff01 | |
parent | 5afc65ca37cf958850d318918043f306dbc92b12 (diff) | |
download | prosody-3dad4dc1001d0a0405c3e443b1b7e161c8536152.tar.gz prosody-3dad4dc1001d0a0405c3e443b1b7e161c8536152.zip |
mod_register: Include additional data in user-registering event
-rw-r--r-- | plugins/mod_register.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index 58aa1536..e999428d 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -255,7 +255,7 @@ module:hook("stanza/iq/jabber:iq:register:query", function(event) session.send(st.error_reply(stanza, "modify", "not-acceptable", "The requested username is invalid.")); return true; end - local user = { username = username , host = host, allowed = true } + local user = { username = username , host = host, additional = data, allowed = true } module:fire_event("user-registering", user); if not user.allowed then log("debug", "Registration disallowed by module"); |