plugins/mod_admin_shell.lua
changeset 12023 a0b6896bb538
parent 12022 c65789f5004e
child 12027 5a3781a12285
--- a/plugins/mod_admin_shell.lua	Mon Dec 06 22:23:38 2021 +0100
+++ b/plugins/mod_admin_shell.lua	Mon Dec 06 22:33:46 2021 +0100
@@ -1333,11 +1333,12 @@
 function def_env.user:roles(jid, host, new_roles)
 	local username, userhost = jid_split(jid);
 	if new_roles == nil then host, new_roles = userhost, host; end
-	if not prosody.hosts[host] then
+	if host ~= "*" and not prosody.hosts[host] then
 		return nil, "No such host: "..host;
 	elseif prosody.hosts[userhost] and not um.user_exists(username, userhost) then
 		return nil, "No such user";
 	end
+	if host == "*" then host = nil; end
 	return um.set_roles(jid, host, coerce_roles(new_roles));
 end