enable bill storing

This commit is contained in:
Thomas Ruoff
2020-10-05 00:09:05 +02:00
committed by Thomas Ruoff
parent df6ec51af9
commit ec1b2e9629
7 changed files with 152 additions and 109 deletions

20
pages/api/daysbooked.ts Normal file
View File

@@ -0,0 +1,20 @@
import { NextApiRequest, NextApiResponse } from 'next'
import { getBookedDays } from '../../db/index'
export default async function useHandler(
req: NextApiRequest,
res: NextApiResponse
) {
const { method } = req
switch (method) {
case 'GET':
const days = await getBookedDays()
res.statusCode = 200
res.json(days)
break
default:
res.setHeader('Allow', ['GET'])
res.status(405).end(`Method ${method} Not Allowed`)
}
}