mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
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:
parent
1d6989afb1
commit
8720067f24
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue