diff --git a/apps/federation/appinfo/routes.php b/apps/federation/appinfo/routes.php index 065be94f36..3d8e25ba1d 100644 --- a/apps/federation/appinfo/routes.php +++ b/apps/federation/appinfo/routes.php @@ -22,53 +22,48 @@ * */ -$application = new \OCA\Federation\AppInfo\Application(); - -$application->registerRoutes( - $this, - [ - 'routes' => [ - [ - 'name' => 'Settings#addServer', - 'url' => '/trusted-servers', - 'verb' => 'POST' - ], - [ - 'name' => 'Settings#removeServer', - 'url' => '/trusted-servers/{id}', - 'verb' => 'DELETE' - ], - [ - 'name' => 'Settings#autoAddServers', - 'url' => '/auto-add-servers', - 'verb' => 'POST' - ], +return [ + 'routes' => [ + [ + 'name' => 'Settings#addServer', + 'url' => '/trusted-servers', + 'verb' => 'POST' ], - 'ocs' => [ - // old endpoints, only used by Nextcloud and ownCloud - [ - 'name' => 'OCSAuthAPI#getSharedSecretLegacy', - 'url' => '/api/v1/shared-secret', - 'verb' => 'GET', - ], - [ - 'name' => 'OCSAuthAPI#requestSharedSecretLegacy', - 'url' => '/api/v1/request-shared-secret', - 'verb' => 'POST', - ], - // new endpoints, published as public api - [ - 'name' => 'OCSAuthAPI#getSharedSecret', - 'root' => '/cloud', - 'url' => '/shared-secret', - 'verb' => 'GET', - ], - [ - 'name' => 'OCSAuthAPI#requestSharedSecret', - 'root' => '/cloud', - 'url' => '/shared-secret', - 'verb' => 'POST', - ], + [ + 'name' => 'Settings#removeServer', + 'url' => '/trusted-servers/{id}', + 'verb' => 'DELETE' ], - ] -); + [ + 'name' => 'Settings#autoAddServers', + 'url' => '/auto-add-servers', + 'verb' => 'POST' + ], + ], + 'ocs' => [ + // old endpoints, only used by Nextcloud and ownCloud + [ + 'name' => 'OCSAuthAPI#getSharedSecretLegacy', + 'url' => '/api/v1/shared-secret', + 'verb' => 'GET', + ], + [ + 'name' => 'OCSAuthAPI#requestSharedSecretLegacy', + 'url' => '/api/v1/request-shared-secret', + 'verb' => 'POST', + ], + // new endpoints, published as public api + [ + 'name' => 'OCSAuthAPI#getSharedSecret', + 'root' => '/cloud', + 'url' => '/shared-secret', + 'verb' => 'GET', + ], + [ + 'name' => 'OCSAuthAPI#requestSharedSecret', + 'root' => '/cloud', + 'url' => '/shared-secret', + 'verb' => 'POST', + ], + ], +];