From a9f4ddfc5affe0cf406ae2cc263d9a11302a93cb Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 18 Nov 2022 03:43:24 -0700 Subject: [PATCH 1/2] Update web routes, fix missing home route --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 8b2331c68..9a0df78ed 100644 --- a/routes/web.php +++ b/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(); From b79d808c3b9d17fdb137ee34b16e3380cd5e9975 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 18 Nov 2022 03:44:36 -0700 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 620bbcf0b..12c35cd56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -26,6 +26,7 @@ - Update landing view, add `app.name` and `app.short_description` for better customizability ([bda9d16b](https://github.com/pixelfed/pixelfed/commit/bda9d16b)) - Update Profile, fix avatarUrl paths. Fixes #3559 #3634 ([989e4249](https://github.com/pixelfed/pixelfed/commit/989e4249)) - Update InboxPipeline, bump request timeout from 5s to 60s ([bb120019](https://github.com/pixelfed/pixelfed/commit/bb120019)) +- Update web routes, fix missing hom route ([a9f4ddfc](https://github.com/pixelfed/pixelfed/commit/a9f4ddfc)) - ([](https://github.com/pixelfed/pixelfed/commit/)) ## [v0.11.4 (2022-10-04)](https://github.com/pixelfed/pixelfed/compare/v0.11.3...v0.11.4)