File tree Expand file tree Collapse file tree
backend/src/main/java/com/back/api/seat/controller Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111import com .back .api .seat .dto .response .SeatResponse ;
1212import com .back .api .seat .service .SeatService ;
1313import com .back .domain .seat .entity .Seat ;
14- import com .back .global .error .code .SeatErrorCode ;
15- import com .back .global .error .exception .ErrorException ;
1614import com .back .global .http .HttpRequestContext ;
1715import com .back .global .response .ApiResponse ;
1816
@@ -34,10 +32,6 @@ public ApiResponse<List<SeatResponse>> getSeatsByEvent(
3432 ) {
3533 Long userId = httpRequestContext .getUser ().getId ();
3634
37- if (!queueEntryReadService .existsInWaitingQueue (eventId , userId )) {
38- throw new ErrorException (SeatErrorCode .NOT_IN_QUEUE );
39- }
40-
4135 List <Seat > seats = seatService .getSeatsByEvent (eventId , userId );
4236
4337 return ApiResponse .ok (
You can’t perform that action at this time.
0 commit comments