Browse Source
fix capabilities
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
pull/9345/head
Bjoern Schiessle
8 years ago
No known key found for this signature in database
GPG Key ID: 2378A753E2BF04F6
1 changed files with
7 additions and
3 deletions
-
apps/cloud_federation_api/lib/Capabilities.php
|
|
|
@ -48,9 +48,13 @@ class Capabilities implements ICapability { |
|
|
|
'enabled' => true, |
|
|
|
'apiVersion' => '1.0-proposal1', |
|
|
|
'endPoint' => substr($url, 0, strrpos($url, '/')), |
|
|
|
'shareTypes' => ['file'], |
|
|
|
'protocol' => [ |
|
|
|
'webdav' => '/public.php/webdav/', |
|
|
|
'shareTypes' => [ |
|
|
|
[ |
|
|
|
'name' => 'file', |
|
|
|
'protocols' => [ |
|
|
|
'webdav' => '/public.php/webdav/', |
|
|
|
] |
|
|
|
], |
|
|
|
] |
|
|
|
] |
|
|
|
]; |
|
|
|
|