25 lines
674 B
PHP
25 lines
674 B
PHP
|
<?php
|
||
|
/**
|
||
|
* ownCloud - gpxedit
|
||
|
*
|
||
|
* This file is licensed under the Affero General Public License version 3 or
|
||
|
* later. See the COPYING file.
|
||
|
*
|
||
|
* @author Julien Veyssier <eneiluj@gmx.fr>
|
||
|
* @copyright Julien Veyssier 2015
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* 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.
|
||
|
* e.g. page#index -> OCA\GpxEdit\Controller\PageController->index()
|
||
|
*
|
||
|
* The controller class has to be registered in the application.php file since
|
||
|
* it's instantiated in there
|
||
|
*/
|
||
|
return [
|
||
|
'routes' => [
|
||
|
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
|
||
|
]
|
||
|
];
|