From e9e576abd9d6c6030aa4bb290e869890831488ad Mon Sep 17 00:00:00 2001 From: yyamashita Date: Mon, 11 May 2026 00:06:52 +0900 Subject: Add lists feature (band recommendation lists with history) New lists, list_entries, list_revisions tables; full CRUD routes under /lists; nav link in root. Co-Authored-By: Claude Sonnet 4.6 --- app/routes.ts | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'app/routes.ts') diff --git a/app/routes.ts b/app/routes.ts index 1d8d60b..b02a70a 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -16,4 +16,10 @@ export default [ route("/artists/named/:slug", "routes/artist-by-slug.tsx"), route("/artists/of/:uuid/edit", "routes/artist-edit.tsx"), route("/artists/of/:uuid/history", "routes/artist-history.tsx"), + route("/lists", "routes/list-index.tsx"), + route("/lists/new", "routes/list-new.tsx"), + route("/lists/of/:uuid", "routes/list-by-uuid.tsx"), + route("/lists/named/:slug", "routes/list-by-slug.tsx"), + route("/lists/of/:uuid/edit", "routes/list-edit.tsx"), + route("/lists/of/:uuid/history", "routes/list-history.tsx"), ] satisfies RouteConfig; -- cgit v1.2.3