|
|
|
|
@ -10,6 +10,7 @@ |
|
|
|
|
local config = require "core.configmanager"; |
|
|
|
|
local encodings = require "util.encodings"; |
|
|
|
|
local stringprep = encodings.stringprep; |
|
|
|
|
local storagemanager = require "core.storagemanager"; |
|
|
|
|
local usermanager = require "core.usermanager"; |
|
|
|
|
local signal = require "util.signal"; |
|
|
|
|
local set = require "util.set"; |
|
|
|
|
@ -38,6 +39,7 @@ function adduser(params) |
|
|
|
|
if not(provider) or provider.name == "null" then |
|
|
|
|
usermanager.initialize_host(host); |
|
|
|
|
end |
|
|
|
|
storagemanager.initialize_host(host); |
|
|
|
|
|
|
|
|
|
local ok = usermanager.create_user(user, password, host); |
|
|
|
|
if not ok then |
|
|
|
|
@ -52,6 +54,7 @@ function user_exists(params) |
|
|
|
|
if not(provider) or provider.name == "null" then |
|
|
|
|
usermanager.initialize_host(host); |
|
|
|
|
end |
|
|
|
|
storagemanager.initialize_host(host); |
|
|
|
|
|
|
|
|
|
return usermanager.user_exists(user, host); |
|
|
|
|
end |
|
|
|
|
|