11 lines
435 B
TypeScript
11 lines
435 B
TypeScript
import type { NextApiRequest, NextApiResponse } from "next";
|
|
import NextAuth from "next-auth";
|
|
|
|
import { getOptions } from "@calcom/features/auth/lib/next-auth-options";
|
|
|
|
// pass req to NextAuth: https://github.com/nextauthjs/next-auth/discussions/469
|
|
const handler = (req: NextApiRequest, res: NextApiResponse) =>
|
|
NextAuth(req, res, getOptions({ getDubId: () => req.cookies.dub_id || req.cookies.dclid }));
|
|
|
|
export default handler;
|