Mercurial > prosody-modules
view mod_audit_register/mod_audit_register.lua @ 5733:b6518a71ca7e
mod_storage_s3: Implement search for set of IDs
This together with the full id range query enables support for
urn:xmpp:mam:2#extended in mod_mam
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 26 Nov 2023 22:44:01 +0100 |
parents | dde83f6043e6 |
children | b4607c5dfcac |
line wrap: on
line source
module:depends("audit"); -- luacheck: read globals module.audit local jid = require "util.jid"; local st = require "util.stanza"; module:hook("user-registered", function(event) local session = event.session; local custom = {}; local invite = event.validated_invite or (event.session and event.session.validated_invite); if invite then table.insert(custom, st.stanza( "invite-used", { xmlns = "xmpp:prosody.im/audit", token = invite.token, } )) end module:audit(jid.join(event.username, module.host), "user-registered", { session = session, custom = custom, }); end);