Skip to content
Snippets Groups Projects
Commit d7d5a3ba authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #20066 from owncloud/list-principaly-in-debug-mode

as soon as debug mode is enabled we allow listing of principals
parents 67a71e05 33152c32
Branches
No related tags found
No related merge requests found
......@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment