Files
formbricks/apps/web/app/api/auth/[...nextauth]/route.ts
Dhruwang Jariwala ab80bc1bf2 feat: language switch (#2692)
Co-authored-by: Johannes <johannes@formbricks.com>
Co-authored-by: Matti Nannt <mail@matthiasnannt.com>
2024-06-12 14:10:22 +00:00

7 lines
178 B
TypeScript

import NextAuth from "next-auth";
import { authOptions } from "@formbricks/lib/authOptions";
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };