From f56c54cebb1a7a549f87d31ac1db34bfbe4ea060 Mon Sep 17 00:00:00 2001 From: austinkelsay Date: Mon, 30 Sep 2024 19:34:51 -0500 Subject: [PATCH] Fix path --- src/pages/api/users/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/api/users/index.js b/src/pages/api/users/index.js index 0276d4c..e12c2f5 100644 --- a/src/pages/api/users/index.js +++ b/src/pages/api/users/index.js @@ -1,6 +1,6 @@ import { getAllUsers, createUser } from '@/db/models/userModels'; import { getServerSession } from "next-auth/next" -import { authOptions } from "@/api/auth/[...nextauth].js" +import { authOptions } from "@/pages/api/auth/[...nextauth].js" export default async function handler(req, res) { if (req.method === 'GET') {