- Add Nuxt 3 + Prisma + SQLite full-stack setup - Add student CRUD API with batch import/export - Add stats dashboard with gender/class distribution - Add target community settings feature - Add Docker deployment support (Dockerfile + docker-compose) - Add README with development and deployment instructions
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
import { prisma } from '~/server/utils/prisma'
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
const id = Number(event.context.params?.id)
|
|
|
|
await prisma.student.delete({
|
|
where: { id }
|
|
})
|
|
|
|
return { success: true }
|
|
})
|