util.pubsub: Look for a configured callback for more complicated access models

This commit is contained in:
Kim Alvefur 2018-08-04 03:04:00 +02:00
parent 2551d819b5
commit d9abcdd048

View file

@ -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)