diff --git a/routes/view/peertube.php b/routes/view/peertube.php index 17e8815..1414d47 100644 --- a/routes/view/peertube.php +++ b/routes/view/peertube.php @@ -1,6 +1,8 @@ 'peertube'], function () { + Route::any('/', 'Peertube\Videos\Local@index'); + Route::any('/a/{id}/{cat?}', 'Peertube\Account@index'); Route::any('/c/{id}/{cat?}/{page?}', 'Peertube\Channel@index'); Route::any('/w/{id}', 'Peertube\Watch@index'); @@ -16,19 +18,23 @@ Route::group(['prefix' => 'peertube'], function () { Route::any('/my-library', 'Peertube\Mylibrary@index'); Route::group(['prefix' => 'admin'], function () { + Route::any('/', 'Peertube\Admin\Users@index'); Route::any('/users', 'Peertube\Admin\Users@index'); }); Route::group(['prefix' => 'my-library'], function () { + Route::any('/', 'Peertube\Mylibrary\Videochannels@index'); Route::any('/videos', 'Peertube\Mylibrary\Videos@index'); Route::any('/video-playlists', 'Peertube\Mylibrary\Videoplaylists@index'); Route::group(['prefix' => 'history'], function () { + Route::any('/', 'Peertube\Mylibrary\History@index'); Route::any('/videos', 'Peertube\Mylibrary\History\Videos@index'); }); }); Route::group(['prefix' => 'videos'], function () { + Route::any('/', 'Peertube\Videos\Local@index'); Route::any('/subscriptions', 'Peertube\Videos\Subscriptions@index'); Route::any('/overview', 'Peertube\Videos\Overview@index'); Route::any('/trending', 'Peertube\Videos\Trending@index');