From d8e57a7cd9c335f42b8f354374fa80e8d2d0bb37 Mon Sep 17 00:00:00 2001 From: Maxim Date: Wed, 4 Jun 2025 14:31:44 +0300 Subject: [PATCH] Clarify fallback route comment --- volunteers/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volunteers/app.py b/volunteers/app.py index 7226dbe..cd5afee 100644 --- a/volunteers/app.py +++ b/volunteers/app.py @@ -65,7 +65,7 @@ async def track_requests( return response -# Proxy everything else to the frontend +# Serve auth page for any other path @app.get("/{path:path}") async def proxy(path: str) -> FileResponse: return FileResponse("./volunteers/auth.html")