# HG changeset patch # User Kim Alvefur # Date 1533755017 -7200 # Node ID ccd91fa828c44a3713119dae067142c76ae56c88 # Parent fd50e9c8c417766e0f70417b79bd0aed45ffaf1e mod_pep: Loosen restrictions on the "none" affiliation This allows non-contacts access to data in nodes with the "open" access model. Thanks gerald diff -r fd50e9c8c417 -r ccd91fa828c4 plugins/mod_pep.lua --- a/plugins/mod_pep.lua Wed Aug 08 20:55:14 2018 +0200 +++ b/plugins/mod_pep.lua Wed Aug 08 21:03:37 2018 +0200 @@ -158,13 +158,13 @@ create = false; publish = false; retract = false; - get_nodes = false; + get_nodes = true; - subscribe = false; - unsubscribe = false; - get_subscription = false; - get_subscriptions = false; - get_items = false; + subscribe = true; + unsubscribe = true; + get_subscription = true; + get_subscriptions = true; + get_items = true; subscribe_other = false; unsubscribe_other = false;