Files
student_manger/server/api/settings/index.get.ts
寒寒 05c33b1fe8 feat: initial commit with Nuxt 3 student management system
- 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
2026-03-21 02:00:55 +08:00

11 lines
270 B
TypeScript

import { prisma } from '~/server/utils/prisma'
export default defineEventHandler(async () => {
const settings = await prisma.settings.findMany()
const result: Record<string, string> = {}
settings.forEach(s => {
result[s.key] = s.value
})
return result
})