mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_internal_hashed: Record time of account disable / re-enable
Could be useful for e.g. #1772
This commit is contained in:
parent
84c0204ea2
commit
5afb393d53
1 changed files with 2 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue