Fix canonical WordPress CalorieApp route - #26
Merged
Conversation
Point standalone CalorieApp sign-in to the canonical WordPress page route.
Add a test to ensure frontend uses the canonical WordPress URL.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the standalone CalorieApp launcher to use the canonical WordPress permalink route (/index.php/calorieapp/) and adds a regression test to prevent reintroducing the non-canonical clean route (/calorieapp/) that returns 404 in the current WordPress configuration.
Changes:
- Updated the frontend launcher fallback URL to
https://calorietoken.net/index.php/calorieapp/. - Aligned
frontend/.env.exampleto the canonical WordPress launcher URL. - Added a backend pytest regression test ensuring the canonical URL is present (and the non-canonical URL is absent) in the relevant frontend sources.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
frontend/components/XamanLoginPanel.tsx |
Updates the default WordPress launcher URL used when opening CalorieApp outside the embedded page. |
frontend/.env.example |
Updates the example env var to match the canonical WordPress route. |
backend/tests/test_frontend_configuration.py |
Adds a regression test guarding against reintroducing the non-canonical /calorieapp/ URL in frontend sources. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
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.
Summary
Reason
The site uses an
/index.php/permalink structure. The previous/calorieapp/target returns 404, while WordPress page 7880 is prepared for/index.php/calorieapp/.Rollback
Revert this pull request and redeploy the previous live commit
62ed99a.