File

mod_measure_registration/mod_measure_registration.lua @ 5638:4379e0e84ee5

mod_invites_api: fix error messages when not `found`.
author Trần H. Trung <xmpp:trần.h.trung@trung.fun>
date Mon, 31 Jul 2023 13:15:54 +0700
parent 3951:32d9d155a9b9
line wrap: on
line source

local count_registering = module:measure("user_registering", "rate");
local count_registered = module:measure("user_registered", "rate");

module:hook("user-registering", function ()
	count_registering();
end);

module:hook("user-registered", function ()
	count_registered();
end);