dc299709f7
OCS endpoint for support.f7cloud.ru, notification notifier, and ?ticket= URL opening in the client UI.
16 lines
252 B
PHP
16 lines
252 B
PHP
<?php
|
|
|
|
return [
|
|
'routes' => [
|
|
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
|
|
],
|
|
'ocs' => [
|
|
[
|
|
'name' => 'push_api#notify',
|
|
'url' => '/api/v{version}/push',
|
|
'verb' => 'POST',
|
|
'requirements' => ['version' => '1'],
|
|
],
|
|
],
|
|
];
|