core/usermanager.lua

Sun, 24 Aug 2008 04:34:01 +0000

author
matthew
date
Sun, 24 Aug 2008 04:34:01 +0000
changeset 2
9bb397205f26
parent 0
3e3171b59028
child 38
3fdfd6e0cb4e
permissions
-rw-r--r--

Working presence!


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

mercurial