diff --git a/routes/web.php b/routes/web.php index 6e608360d..a4632e401 100644 --- a/routes/web.php +++ b/routes/web.php @@ -43,6 +43,8 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact Route::post('media', 'ApiController@uploadMedia')->middleware('throttle:250,1440'); }); Route::group(['prefix' => 'v2'], function() { + Route::get('notifications', 'InternalApiController@notifications'); + Route::get('discover', 'InternalApiController@discover'); }); Route::group(['prefix' => 'local'], function () { Route::get('i/follow-suggestions', 'ApiController@followSuggestions');