mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.pubsub: Look for a configured callback for more complicated access models
This commit is contained in:
parent
2551d819b5
commit
d9abcdd048
1 changed files with 10 additions and 0 deletions
|
@ -121,6 +121,16 @@ function service:get_default_affiliation(node, actor, action) -- luacheck: ignor
|
|||
elseif access_model == "whitelist" then
|
||||
return "none";
|
||||
end
|
||||
|
||||
if self.config.access_models then
|
||||
local check = self.config.access_models[access_model];
|
||||
if check then
|
||||
local aff = check(actor);
|
||||
if aff then
|
||||
return aff;
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function service:set_affiliation(node, actor, jid, affiliation)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue