summaryrefslogtreecommitdiff
path: root/app/api/auth/first-auth/route.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-07-07 08:24:16 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-07-07 08:24:16 +0000
commit44bdb81a60d3a44ba7e379f3c20fe6d8fb284339 (patch)
treeb5c916a1c7ea37573f9bba7fefcef60a3b8aec20 /app/api/auth/first-auth/route.ts
parent90f79a7a691943a496f67f01c1e493256070e4de (diff)
(대표님) 변경사항 20250707 12시 30분
Diffstat (limited to 'app/api/auth/first-auth/route.ts')
-rw-r--r--app/api/auth/first-auth/route.ts4
1 files changed, 2 insertions, 2 deletions
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
}