mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +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?
|
-- TODO map store?
|
||||||
local account = accounts:get(username);
|
local account = accounts:get(username);
|
||||||
account.disabled = nil;
|
account.disabled = nil;
|
||||||
|
account.updated = os.time();
|
||||||
return accounts:set(username, account);
|
return accounts:set(username, account);
|
||||||
end
|
end
|
||||||
|
|
||||||
function provider.disable(username)
|
function provider.disable(username)
|
||||||
local account = accounts:get(username);
|
local account = accounts:get(username);
|
||||||
account.disabled = true;
|
account.disabled = true;
|
||||||
|
account.updated = os.time();
|
||||||
return accounts:set(username, account);
|
return accounts:set(username, account);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue