18 lines
657 B
TypeScript
18 lines
657 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
|
|
import { getServerSession } from "@calcom/features/auth/lib/getServerSession";
|
|
import handleNewBooking from "@calcom/features/bookings/lib/handleNewBooking";
|
|
import { defaultResponder } from "@calcom/lib/server";
|
|
|
|
async function handler(req: NextApiRequest & { userId?: number }, res: NextApiResponse) {
|
|
const session = await getServerSession({ req, res });
|
|
/* To mimic API behavior and comply with types */
|
|
req.userId = session?.user?.id || -1;
|
|
const booking = await handleNewBooking(req, {
|
|
isNotAnApiCall: true,
|
|
});
|
|
return booking;
|
|
}
|
|
|
|
export default defaultResponder(handler);
|