From 2847e6bbcaf091b608f16624e8ff27ad8cafec43 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 27 Apr 2020 21:34:45 -0600 Subject: [PATCH] Update web routes --- routes/web.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/web.php b/routes/web.php index 39f5cc402..2799d10e7 100644 --- a/routes/web.php +++ b/routes/web.php @@ -272,6 +272,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact Route::get('activity', 'AccountController@notifications')->name('notifications'); Route::get('follow-requests', 'AccountController@followRequests')->name('follow-requests'); Route::post('follow-requests', 'AccountController@followRequestHandle'); + Route::get('follow-requests.json', 'AccountController@followRequestsJson'); }); Route::group(['prefix' => 'settings'], function () {