mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_insecure: Store creation and update timestamps on account
This ensures that the store is not empty in case no password is provided, so the underlying data storage won't consider the store empty.
This commit is contained in:
parent
6f11c198b3
commit
742153c555
1 changed files with 3 additions and 1 deletions
|
@ -27,6 +27,7 @@ function provider.set_password(username, password)
|
|||
return nil, "Password fails SASLprep.";
|
||||
end
|
||||
if account then
|
||||
account.updated = os.time();
|
||||
account.password = password;
|
||||
return datamanager.store(username, host, "accounts", account);
|
||||
end
|
||||
|
@ -38,7 +39,8 @@ function provider.user_exists(username)
|
|||
end
|
||||
|
||||
function provider.create_user(username, password)
|
||||
return datamanager.store(username, host, "accounts", {password = password});
|
||||
local now = os.time();
|
||||
return datamanager.store(username, host, "accounts", { created = now; updated = now; password = password });
|
||||
end
|
||||
|
||||
function provider.delete_user(username)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue