mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
mod_admin_shell: user:password(): Support prompting for password if none given
This commit is contained in:
parent
54de66e7b0
commit
6ff135c812
1 changed files with 9 additions and 6 deletions
|
@ -1790,12 +1790,15 @@ function def_env.user:password(jid, password)
|
|||
elseif not um.user_exists(username, host) then
|
||||
return nil, "No such user";
|
||||
end
|
||||
local ok, err = um.set_password(username, password, host, nil);
|
||||
if ok then
|
||||
return true, "User password changed";
|
||||
else
|
||||
return nil, "Could not change password for user: "..err;
|
||||
end
|
||||
|
||||
return promise.resolve(password or self.session.request_input("password")):next(function (password_)
|
||||
local ok, err = um.set_password(username, password_, host, nil);
|
||||
if ok then
|
||||
return "User password changed";
|
||||
else
|
||||
return promise.reject("Could not change password for user: "..err);
|
||||
end
|
||||
end);
|
||||
end
|
||||
|
||||
describe_command [[user:roles(jid, host) - Show current roles for an user]]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue