File

mod_measure_registration/mod_measure_registration.lua @ 5188:7c531137a553

mod_http_oauth2: Implement OOB special redirect URI in code flow Aka "copy and paste this into your client"
author Kim Alvefur <zash@zash.se>
date Thu, 02 Mar 2023 23:59:09 +0100
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);