summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2016-08-14 20:46:33 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2016-08-18 09:37:09 +0200
commit6bc1c6590cf0c0a470d220539f33d1aa4237115d (patch)
tree117888d3a2591a644958379029a672c1811958c8 /core/routes.php
parent3e7710c0d8e30dc9f020194959b657a89c08c095 (diff)
downloadnextcloud-server-6bc1c6590cf0c0a470d220539f33d1aa4237115d.tar.gz
nextcloud-server-6bc1c6590cf0c0a470d220539f33d1aa4237115d.zip
Move /config over to Core OCSController
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 b4868c14cf3..90b8b4d2ace 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'],
],
]);