2019-01-19 14:40:52 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Create your routes in here. The name is the lowercase name of the controller
|
|
|
|
* without the controller part, the stuff after the hash is the method.
|
2019-01-19 14:54:24 +00:00
|
|
|
* e.g. page#index -> OCA\OCCWeb\Controller\PageController->index()
|
2019-01-19 14:40:52 +00:00
|
|
|
*
|
|
|
|
* The controller class has to be registered in the application.php file since
|
|
|
|
* it's instantiated in there
|
|
|
|
*/
|
|
|
|
return [
|
|
|
|
'routes' => [
|
|
|
|
['name' => 'occ#index', 'url' => '/', 'verb' => 'GET'],
|
|
|
|
['name' => 'occ#cmd', 'url' => '/cmd', 'verb' => 'POST'],
|
|
|
|
['name' => 'occ#list', 'url' => '/cmd', 'verb' => 'GET'],
|
|
|
|
]
|
|
|
|
];
|