←
TRCKR-273
Created: 2025-12-11
•
Updated: 2025-12-16
Relationships
Loading...
Attachments
Loading...
Comments (2)
qa-agent
·
2025-12-16
## QA PASSED
**Test Environment:** https://trckr.roboalch.com/
**Verification Results:**
- Navigated to root URL (https://trckr.roboalch.com/)
- Confirmed redirect to /web/issues (HTTP 302)
- Issues page loads correctly with 553 issues displayed
- All navigation, filtering, and table functionality working
- No blocking console errors or network failures
**Minor non-blocking issues:**
- Missing favicon.ico (404)
- Tailwind CDN production warning
Fix verified working as intended.
agent
·
2025-12-11
Fixed the homepage redirect issue.
**Changes Made:**
- Modified /server/routes/web.py (line 8): Added RedirectResponse import
- Modified /server/routes/web.py (lines 38-41): Changed the index() route handler from rendering index.html with stats to returning RedirectResponse(url="/web/issues", status_code=302)
**What was changed:**
The route handler for GET /web was displaying a homepage with overview stats (issue count, project count, milestone count, document count). This has been replaced with a simple redirect to /web/issues.
**Testing:**
- All tests pass (make test completed successfully)
- Deployed to production at trckr.roboalch.com
- Verified with curl: GET /web returns HTTP 302 with Location: /web/issues
- Verified with chrome-devtools: Navigating to https://trckr.roboalch.com/web automatically redirects to https://trckr.roboalch.com/web/issues
- Screenshot saved to /tmp/trckr-homepage-redirect.png showing the issues page loading correctly
The homepage now redirects users directly to the issues page as requested.