Add child route (sub-area) management to route detail page

Shows a sub-areas section below encounters with add/delete support
and links to navigate to child route details.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-08 20:32:17 +01:00
parent c6521dd206
commit 0931884f1e
3 changed files with 85 additions and 2 deletions

View File

@@ -19,6 +19,7 @@ export interface UpdateGameInput {
export interface CreateRouteInput {
name: string
order: number
parentRouteId?: number | null
pinwheelZone?: number | null
}