core/usermanager.lua

changeset 5
57e4eb3aeac0
child 38
3fdfd6e0cb4e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/core/usermanager.lua	Sun Aug 24 18:01:20 2008 +0100
@@ -0,0 +1,11 @@
+
+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