diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-08-27 08:07:47 -0700 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-08-27 08:07:47 -0700 |
commit | abc23f71285112cda59c70a6f490e43fac2ee123 (patch) | |
tree | 9f2243a2e7242564a259eb6305a52de6715ce676 /ocs | |
parent | 38084aba2a755fdb5af4fb5bf6b90956e5fdb536 (diff) | |
parent | e91edabe0f58fe316e3fb62461bce16168e74f52 (diff) | |
download | nextcloud-server-abc23f71285112cda59c70a6f490e43fac2ee123.tar.gz nextcloud-server-abc23f71285112cda59c70a6f490e43fac2ee123.zip |
Merge pull request #3208 from owncloud/api_capabilities_quota
Add the quota to the external API for use with the mobile and desktop clients
Diffstat (limited to 'ocs')
-rw-r--r-- | ocs/routes.php | 9 |
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 + ); |