aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/modulemanager.lua1
-rw-r--r--core/usermanager.lua8
2 files changed, 9 insertions, 0 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index 6d803a26..0aaf4d1f 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -48,6 +48,7 @@ function loadall()
load("saslauth");
load("legacyauth");
load("roster");
+ load("InBandRegistration");
end
function load(name)
diff --git a/core/usermanager.lua b/core/usermanager.lua
index 0f303b24..e38acc87 100644
--- a/core/usermanager.lua
+++ b/core/usermanager.lua
@@ -12,4 +12,12 @@ function validate_credentials(host, username, password)
return false;
end
+function user_exists(username, host)
+ return datamanager.load(username, host, "accounts") ~= nil;
+end
+
+function create_user(username, password, host)
+ return datamanager.store(username, host, "accounts", {password = password});
+end
+
return _M; \ No newline at end of file