Browse Source

Update web routes

Daniel Supernault 6 years ago
parent
commit
82588302da
1 changed files with 2 additions and 0 deletions
  1. 2 0
      routes/web.php

+ 2 - 0
routes/web.php

@@ -88,6 +88,8 @@ Route::domain(config('pixelfed.domain.app'))->middleware('validemail')->group(fu
     Route::group(['prefix' => 'account'], function () {
         Route::redirect('/', '/');
         Route::get('activity', 'AccountController@notifications')->name('notifications');
+        Route::get('follow-requests', 'AccountController@followRequests')->name('follow-requests');
+        Route::post('follow-requests', 'AccountController@followRequestHandle');
     });
 
     Route::group(['prefix' => 'settings'], function () {