pull/327/head
Malte Delfs 2021-06-29 18:17:09 +02:00
parent 89abba1d53
commit dfb9870894
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ import EventAttendeeMail from "../../../lib/emails/EventAttendeeMail";
import { getEventName } from "../../../lib/event"; import { getEventName } from "../../../lib/event";
import { LocationType } from "../../../lib/location"; import { LocationType } from "../../../lib/location";
import merge from "lodash.merge"; import merge from "lodash.merge";
import dayjs from "dayjs";
const translator = short(); const translator = short();
@ -77,7 +78,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
.json({ errorCode: "BookingDateInPast", message: "Attempting to create a meeting in the past." }); .json({ errorCode: "BookingDateInPast", message: "Attempting to create a meeting in the past." });
} }
const currentUser = await prisma.user.findFirst({ let currentUser = await prisma.user.findFirst({
where: { where: {
username: user, username: user,
}, },