mirror of
https://github.com/nextcloud/server.git
synced 2025-07-28 23:20:49 +00:00

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> # Conflicts: # apps/settings/lib/SetupChecks/PhpOpcacheSetup.php
21 lines
446 B
PHP
21 lines
446 B
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
require_once __DIR__ . '/../lib/base.php';
|
|
|
|
header('Content-Type: application/json');
|
|
|
|
$server = \OC::$server;
|
|
|
|
$controller = new \OC\OCS\Provider(
|
|
'ocs_provider',
|
|
$server->getRequest(),
|
|
$server->getAppManager()
|
|
);
|
|
echo $controller->buildProviderList()->render();
|