Mercurial > prosody-modules
view mod_audit_register/mod_audit_register.lua @ 5722:4acb48604490
mod_register_apps: Remove intrinsic size from SVGs, to always display them at their full size
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Thu, 16 Nov 2023 18:06:40 +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);