view mod_audit_tokens/mod_audit_tokens.lua @ 5961:7308ec4aaad1

mod_http_oauth2: Fix error due to mistake in 5f8a306c8306 Was passing the table instead of the host
author Kim Alvefur <zash@zash.se>
date Sat, 07 Sep 2024 15:20:23 +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)