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' => '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'], ], ];