Skip to content

Commit

Permalink
[HotFix] Resolve Conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnsugyeong committed Jun 29, 2024
1 parent e34cb6d commit 67c94a0
Showing 1 changed file with 2 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,13 @@
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.validation.Valid;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.http.MediaType;
<<<<<<< HEAD
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;

import java.util.List;
import java.util.stream.Collectors;

import static com.example.waggle.global.annotation.api.PredefinedErrorStatus.ADMIN;
import static com.example.waggle.global.annotation.api.PredefinedErrorStatus.AUTH;
import static com.example.waggle.global.util.PageUtil.TEAM_RECOMMEND_SIZE;
=======
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
Expand All @@ -54,7 +42,6 @@
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.bind.annotation.RestController;
>>>>>>> [Refactor/#294] Enhance validation message

@Slf4j
@RequiredArgsConstructor
Expand Down Expand Up @@ -224,7 +211,8 @@ public ApiResponseDto<MemberSummaryListDto> getTeam(@AuthUser Member member,
@GetMapping("/{teamId}/participation/status")
public ApiResponseDto<ParticipationStatusResponse> getTeamParticipationStatus(@AuthUser Member member,
@PathVariable("teamId") Long teamId) {
return ApiResponseDto.onSuccess(TeamConverter.toStatusDto(teamQueryService.getParticipationStatus(member, teamId)));
return ApiResponseDto.onSuccess(
TeamConverter.toStatusDto(teamQueryService.getParticipationStatus(member, teamId)));
}

@Operation(summary = "사용자 팀 조회", description = "해당 사용자가 속한 팀 정보를 페이징하여 제공합니다.")
Expand Down

0 comments on commit 67c94a0

Please sign in to comment.