Enhance dashboard functionality by integrating child selection and displaying related measurements, vaccinations, and toothing data. Update Prisma schema to use UUIDs for IDs and add new API endpoint to fetch child details by ID.

This commit is contained in:
Philip
2025-04-14 21:31:21 +02:00
parent 9a3692d147
commit 84a2b3bf0d
15 changed files with 1596 additions and 87 deletions

View File

@@ -1,12 +1,12 @@
import { router } from "@/server/trpc"
import { childRouter } from "./routers/child"
import { authRouter } from "./routers/auth"
import { measurementRouter } from "./routers/measurement"
export const appRouter = router({
child: childRouter,
auth: authRouter,
measurement: measurementRouter,
})
// Export type helper