From 44bdb81a60d3a44ba7e379f3c20fe6d8fb284339 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 7 Jul 2025 08:24:16 +0000 Subject: (대표님) 변경사항 20250707 12시 30분 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/auth/first-auth/route.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/api/auth/first-auth/route.ts') diff --git a/app/api/auth/first-auth/route.ts b/app/api/auth/first-auth/route.ts index 18f44904..ff92e71c 100644 --- a/app/api/auth/first-auth/route.ts +++ b/app/api/auth/first-auth/route.ts @@ -1,8 +1,8 @@ // /api/auth/first-auth/route.ts // 1차 인증 처리 API 엔드포인트 +import { authHelpers } from '@/lib/users/session/helper' import { NextRequest, NextResponse } from 'next/server' -import { authHelpers } from '../[...nextauth]/route' // 요청 데이터 타입 interface FirstAuthRequest { @@ -15,7 +15,7 @@ interface FirstAuthRequest { interface FirstAuthResponse { success: boolean tempAuthKey?: string - userId?: string + userId?: number email?: string error?: string } -- cgit v1.2.3