mod_auth_internal_hashed: Record time of account disable / re-enable

Could be useful for e.g. #1772
This commit is contained in:
Kim Alvefur 2023-03-12 01:24:59 +01:00
parent 84c0204ea2
commit 5afb393d53

View file

@ -123,12 +123,14 @@ function provider.enable(username)
-- TODO map store?
local account = accounts:get(username);
account.disabled = nil;
account.updated = os.time();
return accounts:set(username, account);
end
function provider.disable(username)
local account = accounts:get(username);
account.disabled = true;
account.updated = os.time();
return accounts:set(username, account);
end