diff options
author | Tom Needham <tom@owncloud.com> | 2013-02-09 12:50:19 +0000 |
---|---|---|
committer | Tom Needham <tom@owncloud.com> | 2013-02-09 12:50:19 +0000 |
commit | 5ad1b63f762ab52f8bf550787588dd1ca728145d (patch) | |
tree | 19dc892f79f3277a3addda58f15d21e72630bf85 /ocs | |
parent | 5d14a2cc463f09d010537a5537e3339a87d57558 (diff) | |
download | nextcloud-server-5ad1b63f762ab52f8bf550787588dd1ca728145d.tar.gz nextcloud-server-5ad1b63f762ab52f8bf550787588dd1ca728145d.zip |
Fix api result merging.
Diffstat (limited to 'ocs')
-rw-r--r-- | ocs/routes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ocs/routes.php b/ocs/routes.php index 5e4758fb705..81beae2f881 100644 --- a/ocs/routes.php +++ b/ocs/routes.php @@ -18,4 +18,4 @@ OC_API::register('get', '/privatedata/getattribute/{app}/{key}', array('OC_OCS_P OC_API::register('post', '/privatedata/setattribute/{app}/{key}', array('OC_OCS_Privatedata', 'set'), 'ocs', OC_API::USER_AUTH); OC_API::register('post', '/privatedata/deleteattribute/{app}/{key}', array('OC_OCS_Privatedata', 'delete'), 'ocs', OC_API::USER_AUTH); // cloud -OC_API::register('get', '/cloud/capabilities', array('OC_OCS_Cloud', 'getCapabilities'), 'ocs', OC_API::USER_AUTH);
\ No newline at end of file +OC_API::register('get', '/cloud/capabilities', array('OC_OCS_Cloud', 'getCapabilities'), 'core', OC_API::USER_AUTH);
\ No newline at end of file |