mod_pep: Implement 'roster' (group) access_model

Allows e.g. restricting your vcard4 to only family or similar.

Notes: This does not include roster groups in the configuration form,
so the client will have to get them from the actual roster.
This commit is contained in:
Kim Alvefur 2023-12-03 23:19:27 +01:00
parent 5ef6234248
commit 83ee7e5739
4 changed files with 26 additions and 2 deletions

View file

@ -263,7 +263,7 @@ function service:get_default_affiliation(node, actor) --> affiliation
if self.config.access_models then
local check = self.config.access_models[access_model];
if check then
local aff = check(actor);
local aff = check(actor, node_obj);
if aff then
return aff;
end