view mod_audit_tokens/mod_audit_tokens.lua @ 5910:7358d1b64b1d

mod_muc_restrict_pm: Limit who may send and recieve MUC PMs
author Nicholas George <wirlaburla@worlio.com>
date Tue, 21 May 2024 00:40:06 -0500
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)