usermanager, mod_auth_internal_hashed: Support metadata when disabling a user

This allows us to store a time, actor, comment and/or reason why an account
was disabled, which seems a generally useful thing to support.
This commit is contained in:
Matthew Wild 2023-11-30 09:47:00 +00:00
parent b97c4ffc16
commit 253b2fba90
2 changed files with 5 additions and 4 deletions

View file

@ -126,9 +126,10 @@ function provider.enable(username)
return accounts:set(username, account);
end
function provider.disable(username)
function provider.disable(username, meta)
local account = accounts:get(username);
account.disabled = true;
account.disabled_meta = meta;
account.updated = os.time();
return accounts:set(username, account);
end