summaryrefslogtreecommitdiff
path: root/app/routes/api-artist-detail.tsx
AgeCommit message (Collapse)AuthorLines
3 daysFix build: merge detail/update into existing API routesyyamashita-51/+0
Parametric resource routes cause a React Router prod build error (commonjs--resolver server-only module conflict). Merged the GET?id= and PATCH logic into the existing api-bands.tsx and api-artists.tsx instead of creating separate :uuid route files. - GET /api/bands?id=UUID → band detail with links/members - PATCH /api/bands → partial update (append_links, append_members) - Same pattern for /api/artists Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3 daysFix build: add default export to parametric API resource routesyyamashita-0/+2
React Router requires a default export for parametric routes (:uuid) to correctly split server/client code during the production vite build. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3 daysFix nav classes, add detail APIs, add update-band-info skillyyamashita-0/+49
- 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>