mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
11 lines
291 B
Lua
11 lines
291 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
|