diff --git a/src/app/api/participations/[eventId]/draw-winners/route.ts b/src/app/api/participations/[eventId]/draw-winners/route.ts index a2e09d3..41cb772 100644 --- a/src/app/api/participations/[eventId]/draw-winners/route.ts +++ b/src/app/api/participations/[eventId]/draw-winners/route.ts @@ -8,29 +8,19 @@ export async function POST( ) { try { const { eventId } = params; - const token = request.headers.get('Authorization'); const body = await request.json(); console.log('🎰 [Proxy] Draw winners request:', { eventId, - hasToken: !!token, timestamp: new Date().toISOString(), }); - if (!token) { - return NextResponse.json( - { message: '인증 토큰이 ν•„μš”ν•©λ‹ˆλ‹€.' }, - { status: 401 } - ); - } - const response = await fetch( `${GATEWAY_HOST}/api/v1/participations/events/${eventId}/draw-winners`, { method: 'POST', headers: { 'Content-Type': 'application/json', - Authorization: token, }, body: JSON.stringify(body), }