Browse Source
Make sure the cloud_federation_api routes are loaded
Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/20114/head
Joas Schilling
6 years ago
committed by
Roeland Jago Douma
No known key found for this signature in database
GPG Key ID: F941078878347C0C
1 changed files with
2 additions and
0 deletions
-
ocm-provider/index.php
|
|
|
@ -29,6 +29,8 @@ $server = \OC::$server; |
|
|
|
$isEnabled = $server->getAppManager()->isEnabledForUser('cloud_federation_api'); |
|
|
|
|
|
|
|
if ($isEnabled) { |
|
|
|
// Make sure the routes are loaded
|
|
|
|
\OC_App::loadApp('cloud_federation_api'); |
|
|
|
$capabilities = new OCA\CloudFederationAPI\Capabilities($server->getURLGenerator()); |
|
|
|
header('Content-Type: application/json'); |
|
|
|
echo json_encode($capabilities->getCapabilities()['ocm']); |
|
|
|
|