Software / code / prosody-modules
File
mod_measure_registration/mod_measure_registration.lua @ 4937:3ddab718f717
mod_privilege: update to v0.4:
- now the namespace "urn:xmpp:privilege:2" is exclusively used
- IQ permission implementation
- README update
roster pushes are not implemented yet
| author | Goffi <goffi@goffi.org> |
|---|---|
| date | Wed, 11 May 2022 12:43:26 +0200 |
| 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);