mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_admin_shell: Allow assigning roles to arbitrary JIDs when supported
mod_authz_internal does not support this
This commit is contained in:
parent
77833e7394
commit
577e6d8370
1 changed files with 5 additions and 1 deletions
|
@ -1770,7 +1770,11 @@ function def_env.user:setrole(jid, host, new_role)
|
||||||
elseif prosody.hosts[userhost] and not um.user_exists(username, userhost) then
|
elseif prosody.hosts[userhost] and not um.user_exists(username, userhost) then
|
||||||
return nil, "No such user";
|
return nil, "No such user";
|
||||||
end
|
end
|
||||||
return um.set_user_role(username, host, new_role);
|
if userhost == host then
|
||||||
|
return um.set_user_role(username, userhost, new_role);
|
||||||
|
else
|
||||||
|
return um.set_jid_role(jid, host, new_role);
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe_command [[user:addrole(jid, host, role) - Add a secondary role to a user]]
|
describe_command [[user:addrole(jid, host, role) - Add a secondary role to a user]]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue