Mercurial > prosody-modules
view mod_audit_tokens/mod_audit_tokens.lua @ 5905:02657e8693bc
mod_http_muc_log: replace "mam_muc" with "muc_mam" in README.markdown
author | Luca Matei Pintilie <luca@lucamatei.com> |
---|---|
date | Sun, 12 May 2024 17:01:20 +0200 |
parents | c89077b4f46e |
children |
line wrap: on
line source
local jid = require"util.jid"; module:depends("audit"); -- luacheck: read globals module.audit module:hook("token-grant-created", function(event) module:audit(jid.join(event.username, event.host), "token-grant-created", { }); end) module:hook("token-grant-revoked", function(event) module:audit(jid.join(event.username, event.host), "token-grant-revoked", { }); end) module:hook("token-revoked", function(event) module:audit(jid.join(event.username, event.host), "token-revoked", { }); end)