mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
moduleapi: Distribute permissions set from global modules to all hosts
Roles and permissions will always happen in the context of a host. Prevents error upon indexing since `hosts["*"] == nil`
This commit is contained in:
parent
a0f2f9ee19
commit
5f8e441449
1 changed files with 8 additions and 0 deletions
|
@ -604,6 +604,14 @@ end
|
|||
|
||||
function api:default_permission(role_name, permission)
|
||||
permission = permission:gsub("^:", self.name..":");
|
||||
if self.host == "*" then
|
||||
for _, host in pairs(hosts) do
|
||||
if host.authz then
|
||||
host.authz.add_default_permission(role_name, permission);
|
||||
end
|
||||
end
|
||||
return
|
||||
end
|
||||
hosts[self.host].authz.add_default_permission(role_name, permission);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue