Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
🚀 New features to boost your workflow:
|
JasonMillward
approved these changes
Jun 14, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is a precondition for the future timeline page, feed page (and others?)
This pull request introduces a new "Home" page feature, allowing users to configure a default homepage for the application. The changes span backend configuration, frontend routing, and state management updates. Below is a summary of the most important changes grouped by theme:
Backend Changes:
2025_06_12_102340_home_page.php) to define a configuration keyhome_page_defaultwith a default value of "gallery" for setting the default homepage.InitConfigclass to include a new propertydefault_homepageand fetch its value from the configuration. [1] [2]Frontend Routing and Components:
Home.vuecomponent that redirects users to the appropriate default homepage based on the configuration.routes.ts) to add a route for the new "Home" page (/home). [1] [2]Landing.vueandStatistics.vueto redirect to the "Home" page instead of the "Gallery" page. [1] [2] [3] [4]State Management:
LycheeStateStoreto include a newdefault_homepageproperty and ensure it is initialized when loading application data. [1] [2]Miscellaneous:
web_v2.phproutes file to add a/homeroute for the new homepage.