Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-08-11 00:01:10 +0400
committerLukas Reschke <lukas@statuscode.ch>2012-08-11 00:02:04 +0400
commit11895a86b0c68fa7eb7bc0cdaf6b12ad30b71b2a (patch)
treee9460dbd4f220476cd6c0cf74bfa8e8dd6fd0ad4 /apps/calendar
parent8ec45870a3f1d9dfb633a39b7b8a7c4911533d9e (diff)
Activate ACLs
Diffstat (limited to 'apps/calendar')
-rw-r--r--apps/calendar/appinfo/remote.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/calendar/appinfo/remote.php b/apps/calendar/appinfo/remote.php
index e8f9e80c7a8..71f1f378ae4 100644
--- a/apps/calendar/appinfo/remote.php
+++ b/apps/calendar/appinfo/remote.php
@@ -30,6 +30,9 @@ $nodes = array(
$server = new Sabre_DAV_Server($nodes);
$server->setBaseUri($baseuri);
// Add plugins
+$aclPlugin = new Sabre_DAVACL_Plugin();
+$aclPlugin->hideNodesFromListings = true;
+$server->addPlugin($aclPlugin);
$server->addPlugin(new Sabre_DAV_Auth_Plugin($authBackend,'ownCloud'));
$server->addPlugin(new Sabre_CalDAV_Plugin());
$server->addPlugin(new Sabre_DAVACL_Plugin());