Mercurial > prosody-modules
view mod_audit_tokens/mod_audit_tokens.lua @ 5785:671a6ad1f026
mod_http_admin_api: Fix some luacheck warnings and code style issues
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 07 Dec 2023 15:43:16 +0000 |
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)