From 59554d37f6b602c8788d198237be92344072fbb3 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Mon, 2 Feb 2026 20:30:27 -0500 Subject: [PATCH] fix: update docs redirect to use lowercase index.md Changed DocsHome redirect from /docs/INDEX.md to /docs/index.md to match the renamed file. --- internal/docs/http_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/docs/http_handler.go b/internal/docs/http_handler.go index 367a232..272f048 100644 --- a/internal/docs/http_handler.go +++ b/internal/docs/http_handler.go @@ -213,7 +213,7 @@ func (h *HTTPHandler) showLegacyAPIEndpoint(c echo.Context, endpointPath string, // DocsHome redirects to the documentation index func (h *HTTPHandler) DocsHome(c echo.Context) error { - return c.Redirect(http.StatusFound, "/docs/INDEX.md") + return c.Redirect(http.StatusFound, "/docs/index.md") } // APIHome shows the API documentation home page