mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +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
|
@ -102,6 +102,10 @@ function provider.user_exists(username)
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function provider.users()
|
||||||
|
return datamanager.users(host, "accounts");
|
||||||
|
end
|
||||||
|
|
||||||
function provider.create_user(username, password)
|
function provider.create_user(username, password)
|
||||||
if password == nil then
|
if password == nil then
|
||||||
return datamanager.store(username, host, "accounts", {});
|
return datamanager.store(username, host, "accounts", {});
|
||||||
|
|
|
@ -52,6 +52,10 @@ function provider.user_exists(username)
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function provider.users()
|
||||||
|
return datamanager.users(host, "accounts");
|
||||||
|
end
|
||||||
|
|
||||||
function provider.create_user(username, password)
|
function provider.create_user(username, password)
|
||||||
return datamanager.store(username, host, "accounts", {password = password});
|
return datamanager.store(username, host, "accounts", {password = password});
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue