28 lines
1.2 KiB
PHP
28 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* 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\RePod\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'],
|
|
['name' => 'page#feed', 'url' => '/feed/{path}', 'verb' => 'GET', 'requirements' => ['path' => '.+']],
|
|
['name' => 'page#discover', 'url' => '/discover', 'verb' => 'GET'],
|
|
['name' => 'episodes#action', 'url' => '/episodes/action', 'verb' => 'GET'],
|
|
['name' => 'episodes#list', 'url' => '/episodes/list', 'verb' => 'GET'],
|
|
['name' => 'opml#export', 'url' => '/opml/export', 'verb' => 'GET'],
|
|
['name' => 'opml#import', 'url' => '/opml/import', 'verb' => 'POST'],
|
|
['name' => 'podcast#index', 'url' => '/podcast', 'verb' => 'GET'],
|
|
['name' => 'search#index', 'url' => '/search', 'verb' => 'GET'],
|
|
['name' => 'toplist#hot', 'url' => '/toplist/hot', 'verb' => 'GET'],
|
|
['name' => 'toplist#new', 'url' => '/toplist/new', 'verb' => 'GET'],
|
|
],
|
|
];
|