From 305e38bd45181bcfcd81c3cee84f8c37401741f5 Mon Sep 17 00:00:00 2001 From: Rafi Arrafif Date: Fri, 29 Aug 2025 22:31:18 +0700 Subject: [PATCH] :construction: (wip) testing with return context --- src/modules/auth/controllers/googleCallback.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/auth/controllers/googleCallback.controller.ts b/src/modules/auth/controllers/googleCallback.controller.ts index eee3665..da9b468 100644 --- a/src/modules/auth/controllers/googleCallback.controller.ts +++ b/src/modules/auth/controllers/googleCallback.controller.ts @@ -7,6 +7,7 @@ import { getUserHeaderInformation } from "../../../helpers/http/userHeader/getUs export const googleCallbackController = async ( ctx: Context & { query: { code: string; state: string } } ) => { + return ctx; try { const userHeaderInfo = getUserHeaderInformation(ctx);