mod_admin_shell: Enable user after creation with role

Fixes that otherwise the user was created in a disabled state and left
as such.
This commit is contained in:
Kim Alvefur 2023-03-26 16:45:34 +02:00
parent 1d6989afb1
commit 8720067f24

View file

@ -1533,6 +1533,11 @@ function def_env.user:create(jid, password, role)
if not ok then
return nil, "Could not set password for user: "..err;
end
local ok, err = um.enable_user(username, host);
if not ok and err ~= "method-not-implemented" then
return nil, "Could not enable user: "..err;
end
end
else
local ok, err = um.create_user(username, password, host);