diff --git a/apps/cloud_federation_api/appinfo/routes.php b/apps/cloud_federation_api/appinfo/routes.php index 9aa98315c3..8dbc0e3e93 100644 --- a/apps/cloud_federation_api/appinfo/routes.php +++ b/apps/cloud_federation_api/appinfo/routes.php @@ -22,16 +22,18 @@ declare(strict_types=1); */ return [ - [ - 'name' => 'RequestHandler#addShare', - 'url' => '/ocm/shares', - 'verb' => 'POST', - 'root' => '', - ], - [ - 'name' => 'RequestHandler#receiveNotification', - 'url' => '/ocm/notifications', - 'verb' => 'POST', - 'root' => '', + 'routes' => [ + [ + 'name' => 'RequestHandler#addShare', + 'url' => '/ocm/shares', + 'verb' => 'POST', + 'root' => '', + ], + [ + 'name' => 'RequestHandler#receiveNotification', + 'url' => '/ocm/notifications', + 'verb' => 'POST', + 'root' => '', + ], ], ];