mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
(but before you get too excited, no resource binding yet. And yes, there are still plenty of rough edges to the code...) ((eg. must move <stream:features> out of xmlhandlers.lua o_O ))
13 lines
No EOL
302 B
Lua
13 lines
No EOL
302 B
Lua
|
|
require "util.datamanager"
|
|
local datamanager = datamanager;
|
|
|
|
module "usermanager"
|
|
|
|
function validate_credentials(host, username, password)
|
|
local credentials = datamanager.load(username, host, "accounts") or {};
|
|
if password == credentials.password then return true; end
|
|
return false;
|
|
end
|
|
|
|
return _M; |