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
path: root/ocs
diff options
context:
space:
mode:
authorTom Needham <tom@owncloud.com>2013-05-01 21:20:46 +0400
committerMorris Jobke <morris.jobke@gmail.com>2013-08-27 17:39:43 +0400
commitf14ce1efdc2a8b9656bd485055dea706936c585d (patch)
tree9353611e3dc162c71b86acb0201d0eb74557f5a2 /ocs
parent13514fd1adabc705c8e47cf48c0ce1f8a3b38181 (diff)
Add quota to core api
Diffstat (limited to 'ocs')
-rw-r--r--ocs/routes.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/ocs/routes.php b/ocs/routes.php
index 1ea698c7a83..283c9af6924 100644
--- a/ocs/routes.php
+++ b/ocs/routes.php
@@ -28,7 +28,7 @@ OC_API::register(
array('OC_OCS_Activity', 'activityGet'),
'core',
OC_API::USER_AUTH
- );
+ );
// Privatedata
OC_API::register(
'get',
@@ -75,3 +75,10 @@ OC_API::register(
'core',
OC_API::USER_AUTH
);
+OC_API::register(
+ 'get',
+ '/cloud/users/{userid}',
+ array('OC_OCS_Cloud', 'getUser'),
+ 'core',
+ OC_API::USER_AUTH
+ );