aboutsummaryrefslogtreecommitdiffstats
path: root/core/usermanager.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/usermanager.lua')
-rw-r--r--core/usermanager.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua
new file mode 100644
index 00000000..c98a1918
--- /dev/null
+++ b/core/usermanager.lua
@@ -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