mod_audit_tokens/mod_audit_tokens.lua
author Kim Alvefur <zash@zash.se>
Sat, 06 Apr 2024 17:51:29 +0200
changeset 5883 bf5370a40a15
parent 5754 c89077b4f46e
permissions -rw-r--r--
misc/systemd: Fix typo Is this worth keeping? We also have a .service file in the debian repo?

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)