feat: add user management section

This commit is contained in:
Daniel Soares
2021-12-23 14:51:34 -03:00
parent f977de999d
commit 19aa8d2311
64 changed files with 1713 additions and 398 deletions

16
src/api/data/getData.ts Normal file
View File

@@ -0,0 +1,16 @@
import { prisma } from 'services/prisma'
import { ExceptionError } from 'utils/error'
import type { NextApiRequest, NextApiResponse } from 'next'
export async function getData(_req: NextApiRequest, res: NextApiResponse) {
const response = await prisma.data.findUnique({
where: { id: 1 }
})
if (!response) {
throw new ExceptionError('No data found')
}
res.status(200).json(response?.data)
}