Fix route definitions of cloud_federation_api

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/20114/head
Joas Schilling 4 years ago committed by Roeland Jago Douma
parent e45c87cd2e
commit 9654a924ab
No known key found for this signature in database
GPG Key ID: F941078878347C0C

@ -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' => '',
],
],
];

Loading…
Cancel
Save