From 41ab48e7c04cf605f2a01ea02045a7e04a25132b Mon Sep 17 00:00:00 2001 From: Bhavesh Chaudhari Date: Mon, 30 Sep 2024 23:40:52 +0530 Subject: [PATCH 1/3] chore: test ci working --- server/src/controllers/auth.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/src/controllers/auth.ts b/server/src/controllers/auth.ts index 6819f44..b2eb3d9 100644 --- a/server/src/controllers/auth.ts +++ b/server/src/controllers/auth.ts @@ -2,7 +2,6 @@ import { Request, Response } from "express"; import { StatusCodes } from "http-status-codes"; import { prisma } from "../utils/prisma"; import bcrypt from "bcryptjs"; -import jwt from "jsonwebtoken"; const User = prisma.user; @@ -104,4 +103,4 @@ export const checkAuth = (req: Request, res: Response) => { } catch (error) { res.status(StatusCodes.INTERNAL_SERVER_ERROR).json(error); } -}; \ No newline at end of file +}; From a83df054b4af9db9bd64e02aa0a71f85def94a8a Mon Sep 17 00:00:00 2001 From: Bhavesh Chaudhari Date: Mon, 30 Sep 2024 23:44:55 +0530 Subject: [PATCH 2/3] chore: test 2 --- server/src/controllers/auth.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/server/src/controllers/auth.ts b/server/src/controllers/auth.ts index b2eb3d9..087621e 100644 --- a/server/src/controllers/auth.ts +++ b/server/src/controllers/auth.ts @@ -1,7 +1,6 @@ import { Request, Response } from "express"; import { StatusCodes } from "http-status-codes"; import { prisma } from "../utils/prisma"; -import bcrypt from "bcryptjs"; const User = prisma.user; From bdbd801479757d5a55672b9e7cb7d258391103d3 Mon Sep 17 00:00:00 2001 From: Bhavesh Chaudhari Date: Mon, 30 Sep 2024 23:46:12 +0530 Subject: [PATCH 3/3] chore: test 3 --- server/src/controllers/auth.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/src/controllers/auth.ts b/server/src/controllers/auth.ts index 087621e..6e482de 100644 --- a/server/src/controllers/auth.ts +++ b/server/src/controllers/auth.ts @@ -1,6 +1,8 @@ import { Request, Response } from "express"; import { StatusCodes } from "http-status-codes"; import { prisma } from "../utils/prisma"; +import bcrypt from "bcryptjs"; +import jwt from "jsonwebtoken"; const User = prisma.user;