From b29876cf6f865182ef6958aaf63d91d43dd08d55 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Fri, 15 May 2026 00:16:27 +0900 Subject: Fix nav classes, add detail APIs, add update-band-info skill - Fix nav: apply .nav class and .nav-brand to logo (styles were not rendering) - Add GET+PATCH /api/bands/:uuid and /api/artists/:uuid endpoints - PATCH supports append_links / append_members for non-destructive updates - Add /update-band-info skill: fetch SNS profiles and update band description/members Co-Authored-By: Claude Sonnet 4.6 --- app/routes.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/routes.ts') diff --git a/app/routes.ts b/app/routes.ts index 0a2c028..518492f 100644 --- a/app/routes.ts +++ b/app/routes.ts @@ -3,7 +3,9 @@ import { type RouteConfig, index, route } from "@react-router/dev/routes"; export default [ index("routes/home.tsx"), route("/api/bands", "routes/api-bands.tsx"), + route("/api/bands/:uuid", "routes/api-band-detail.tsx"), route("/api/artists", "routes/api-artists.tsx"), + route("/api/artists/:uuid", "routes/api-artist-detail.tsx"), route("/api/export", "routes/api-export.tsx"), route("/api/import", "routes/api-import.tsx"), route("/bands", "routes/band-index.tsx"), -- cgit v1.2.3