Update web routes, fix missing home route

This commit is contained in:
Daniel Supernault 2022-11-18 03:43:24 -07:00
parent c2f6073e6a
commit a9f4ddfc5a
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ Route::domain(config('portfolio.domain'))->group(function () {
Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofactor', 'localization'])->group(function () {
Route::get('/', 'SiteController@home')->name('timeline.personal');
Route::redirect('/home', '/');
Route::redirect('/home', '/')->name('home');
Auth::routes();