view mod_measure_registration/mod_measure_registration.lua @ 4636:6bcccc63b542

mod_pubsub_post: fix incorrect claim The code clearly publishes to ID current, not to a random ID.
author Jonas Schäfer <jonas@wielicki.name>
date Thu, 29 Jul 2021 17:23:08 +0200
parents 32d9d155a9b9
children
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);