From 76d8f7ed6ef98242f57752fd672259c49ac67752 Mon Sep 17 00:00:00 2001 From: Henry Winkel Date: Sat, 16 May 2026 12:42:24 +0200 Subject: [PATCH] routes: register most-actives API endpoint --- app/routes.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/routes.ts b/app/routes.ts index ccf5559..ee3d2ac 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -9,6 +9,7 @@ export default [ route("api/indicators", "routes/api/indicators.ts"), route("api/analyze", "routes/api/analyze.ts"), route("api/stocks", "routes/api/stocks/index.ts"), + route("api/stocks/most-actives", "routes/api/stocks/most-actives.ts"), route("stocks", "routes/stocks.tsx"), route("analyze", "routes/analyze.tsx"), route("analyze/:ticker", "routes/analyze.ticker.tsx"),