summaryrefslogtreecommitdiff
path: root/app/api/auth/first-auth/route.ts
diff options
context:
space:
mode:
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
}