# HG changeset patch # User Kim Alvefur # Date 1480571223 -3600 # Node ID 560d2e758d4cf320a5317a00f98385270046f474 # Parent c276d72d4e17d25b46b28ed8183182ac5bc1ff3d mod_register: Record the time of registration in the account details store diff -r c276d72d4e17 -r 560d2e758d4c 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);