Fix route definitions of cloud_federation_api
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
e45c87cd2e
commit
9654a924ab
|
@ -22,16 +22,18 @@ declare(strict_types=1);
|
||||||
*/
|
*/
|
||||||
|
|
||||||
return [
|
return [
|
||||||
[
|
'routes' => [
|
||||||
'name' => 'RequestHandler#addShare',
|
[
|
||||||
'url' => '/ocm/shares',
|
'name' => 'RequestHandler#addShare',
|
||||||
'verb' => 'POST',
|
'url' => '/ocm/shares',
|
||||||
'root' => '',
|
'verb' => 'POST',
|
||||||
],
|
'root' => '',
|
||||||
[
|
],
|
||||||
'name' => 'RequestHandler#receiveNotification',
|
[
|
||||||
'url' => '/ocm/notifications',
|
'name' => 'RequestHandler#receiveNotification',
|
||||||
'verb' => 'POST',
|
'url' => '/ocm/notifications',
|
||||||
'root' => '',
|
'verb' => 'POST',
|
||||||
|
'root' => '',
|
||||||
|
],
|
||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue