mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_auth_internal_{plain,hashed}: Add support for iterating over accounts
This commit is contained in:
parent
00986c0172
commit
ce8ed66881
2 changed files with 8 additions and 0 deletions
plugins
|
@ -102,6 +102,10 @@ function provider.user_exists(username)
|
|||
return true;
|
||||
end
|
||||
|
||||
function provider.users()
|
||||
return datamanager.users(host, "accounts");
|
||||
end
|
||||
|
||||
function provider.create_user(username, password)
|
||||
if password == nil then
|
||||
return datamanager.store(username, host, "accounts", {});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue