Mercurial > prosody-modules
view mod_audit_auth/mod_audit_auth.lua @ 5016:964de9997552
mod_admin_blocklist: Fix traceback due to misplaced parenthesis
get_jids_with_role() throws an exception when 'host' is nil since
Prosody trunk rev 7ca5645f46cd
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 27 Aug 2022 15:39:38 +0200 |
parents | 08dea42a302a |
children | b357ff3d0c8a |
line wrap: on
line source
module:depends("audit"); -- luacheck: read globals module.audit module:hook("authentication-failure", function(event) local session = event.session; module:audit(session.sasl_handler.username, "authentication-failure", { session = session, }); end) module:hook("authentication-success", function(event) local session = event.session; module:audit(session.sasl_handler.username, "authentication-success", { session = session, }); end)