Browse Source

Update web routes, fix missing home route

Daniel Supernault 2 năm trước cách đây
mục cha
commit
a9f4ddfc5a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      routes/web.php

+ 1 - 1
routes/web.php

@@ -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();