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:
authorMorris Jobke <hey@morrisjobke.de>2016-08-19 10:39:05 +0300
committerGitHub <noreply@github.com>2016-08-19 10:39:05 +0300
commit3ccd69707e75c3d99156c41d8107621e07a01ded (patch)
tree5125019b43b28df034e791c3606aef282bce4aca /core/routes.php
parentae36731604e4b22901f6207b30e419dec28dd3f5 (diff)
parentc7b4142fee63fd83820faff8182c4578da7bcdc6 (diff)
Merge pull request #865 from nextcloud/ocs_config
Move OCS route /config to proper controller
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php
index 037aa4307b3..3eec1e58c33 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -56,6 +56,7 @@ $application->registerRoutes($this, [
'ocs' => [
['root' => '/cloud', 'name' => 'OCS#getCapabilities', 'url' => '/capabilities', 'verb' => 'GET'],
['root' => '/cloud', 'name' => 'OCS#getCurrentUser', 'url' => '/user', 'verb' => 'GET'],
+ ['root' => '', 'name' => 'OCS#getConfig', 'url' => '/config', 'verb' => 'GET'],
],
]);