as soon as debug mode is enabled we allow listing of principals

remotes/origin/dav-zip-folder
Thomas Müller 11 years ago
parent 40ba8d267f
commit 33152c3203
  1. 11
      apps/dav/lib/rootcollection.php

@ -9,14 +9,19 @@ use Sabre\DAV\SimpleCollection;
class RootCollection extends SimpleCollection {
public function __construct() {
$config = \OC::$server->getConfig();
$principalBackend = new Principal(
\OC::$server->getConfig(),
$config,
\OC::$server->getUserManager()
);
// as soon as debug mode is enabled we allow listing of principals
$disableListing = !$config->getSystemValue('debug', false);
// setup the first level of the dav tree
$principalCollection = new Collection($principalBackend);
$principalCollection->disableListing = true;
$principalCollection->disableListing = $disableListing;
$filesCollection = new Files\RootCollection($principalBackend);
$filesCollection->disableListing = true;
$filesCollection->disableListing = $disableListing;
$children = [
$principalCollection,

Loading…
Cancel
Save