We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a071d9c commit b6a9a45Copy full SHA for b6a9a45
1 file changed
src/main/java/com/be/sportizebe/domain/match/controller/MatchController.java
@@ -68,7 +68,7 @@ public ResponseEntity<BaseResponse<MatchDetailResponse>> getMatchDetail(
68
return ResponseEntity.ok(BaseResponse.success("매칭 상세 조회 성공", response));
69
}
70
71
- @Operation(summary = "내 주변 매칭 목록 조회 (매칭상태: OPEN만 보여준다.)")
+ @Operation(summary = "내 주변 매칭 목록 조회", description = "매칭상태가 OPEN인 매칭들만 보여준다.")
72
@GetMapping("/near")
73
public ResponseEntity<BaseResponse<List<MatchNearResponse>>> getNearMatches(
74
@ParameterObject @Valid @ModelAttribute MatchNearRequest request
0 commit comments