diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2015-01-26 16:09:14 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2015-02-04 14:56:31 +0100 |
commit | b3ea849a8704d29fad0a738af8af3430ebb5b3af (patch) | |
tree | d7738d6c21cca8d7993844e0ece0f4a970fe0b95 /apps/files_sharing/appinfo | |
parent | 77e9c212edb1b0b1bbd2dfc8231ce5f183d6c3c8 (diff) | |
download | nextcloud-server-b3ea849a8704d29fad0a738af8af3430ebb5b3af.tar.gz nextcloud-server-b3ea849a8704d29fad0a738af8af3430ebb5b3af.zip |
Added capabilities whether a server allows public links
This fixes #13673.
It now lists link sharing, passwords enforced, and if public uploads are
allowed.
Diffstat (limited to 'apps/files_sharing/appinfo')
-rw-r--r-- | apps/files_sharing/appinfo/routes.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php index dd9509575b7..44ab5c0de99 100644 --- a/apps/files_sharing/appinfo/routes.php +++ b/apps/files_sharing/appinfo/routes.php @@ -56,3 +56,10 @@ $this->create('sharing_external_test_remote', '/testremote') '/apps/files_sharing/api/v1/shares/{id}', array('\OCA\Files_Sharing\API\Local', 'deleteShare'), 'files_sharing'); + +// Register with the capabilities API +\OC_API::register('get', + '/cloud/capabilities', + array('OCA\Files_Sharing\Capabilities', 'getCapabilities'), + 'files_sharing', + \OC_API::USER_AUTH); |