Update web routes

pull/521/head
Daniel Supernault 7 years ago
parent d06a3068ed
commit 73d45e9c28
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -178,7 +178,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
Route::post('p/{username}/{id}/edit', 'StatusController@editStore');
Route::get('p/{username}/{id}', 'StatusController@show');
Route::get('{username}/saved', 'ProfileController@savedBookmarks');
Route::get('{username}/followers', 'ProfileController@followers');
Route::get('{username}/following', 'ProfileController@following');
Route::get('{username}/followers', 'ProfileController@followers')->middleware('auth');
Route::get('{username}/following', 'ProfileController@following')->middleware('auth');
Route::get('{username}', 'ProfileController@show');
});

Loading…
Cancel
Save