2019-01-21 11:37:07 +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-29 14:17:39 +00:00
|
|
|
* e.g. page#index -> OCA\AppsAutoUpdater\Controller\PageController->index()
|
2019-01-21 11:37:07 +00:00
|
|
|
*
|
|
|
|
* The controller class has to be registered in the application.php file since
|
|
|
|
* it's instantiated in there
|
|
|
|
*/
|
|
|
|
return [
|
|
|
|
'routes' => []
|
|
|
|
];
|