diff options
| author | yyamashita <yyamashita@mosquit.one> | 2026-05-15 00:16:27 +0900 |
|---|---|---|
| committer | yyamashita <yyamashita@mosquit.one> | 2026-05-15 00:16:27 +0900 |
| commit | b29876cf6f865182ef6958aaf63d91d43dd08d55 (patch) | |
| tree | 381808b8593febbde5abdcb320d7eba8915faa65 /app/routes.ts | |
| parent | 1a8a159a71fd018bab0e14d9df952c53ae5ea062 (diff) | |
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 <noreply@anthropic.com>
Diffstat (limited to 'app/routes.ts')
| -rw-r--r-- | app/routes.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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"), |
