mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_authz_internal: Allow specifying default role for public (remote) users
This commit is contained in:
parent
53ccf68cdf
commit
5ed7f1638c
1 changed files with 3 additions and 0 deletions
|
@ -16,6 +16,7 @@ local host_user_role, server_user_role;
|
||||||
if is_component then
|
if is_component then
|
||||||
host_user_role = module:get_option_string("host_user_role", "prosody:user");
|
host_user_role = module:get_option_string("host_user_role", "prosody:user");
|
||||||
server_user_role = module:get_option_string("server_user_role");
|
server_user_role = module:get_option_string("server_user_role");
|
||||||
|
public_user_role = module:get_option_string("public_user_role");
|
||||||
end
|
end
|
||||||
|
|
||||||
local role_store = module:open_store("account_roles");
|
local role_store = module:open_store("account_roles");
|
||||||
|
@ -240,6 +241,8 @@ function get_jid_role(jid)
|
||||||
return role_registry[host_user_role];
|
return role_registry[host_user_role];
|
||||||
elseif server_user_role and hosts[user_host] then
|
elseif server_user_role and hosts[user_host] then
|
||||||
return role_registry[server_user_role];
|
return role_registry[server_user_role];
|
||||||
|
elseif public_user_role then
|
||||||
|
return role_registry[public_user_role];
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return nil;
|
return nil;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue