mod_register: Record the time of registration in the account details store
authorKim Alvefur <zash@zash.se>
Thu, 01 Dec 2016 06:47:03 +0100
changeset 7757 560d2e758d4c
parent 7756 c276d72d4e17
child 7758 19aa9b1ef9e8
mod_register: Record the time of registration in the account details store
plugins/mod_register.lua
--- a/plugins/mod_register.lua	Thu Dec 01 03:22:42 2016 +0100
+++ b/plugins/mod_register.lua	Thu Dec 01 06:47:03 2016 +0100
@@ -257,6 +257,7 @@
 						-- TODO unable to write file, file may be locked, etc, what's the correct error?
 						local error_reply = st.error_reply(stanza, "wait", "internal-server-error", "Failed to write data to disk.");
 						if usermanager_create_user(username, password, host) then
+							data.registered = os.time();
 							if next(data) and not account_details:set(username, data) then
 								log("debug", "Could not store extra details");
 								usermanager_delete_user(username, host);