Skip to content

Commit

Permalink
Merge pull request #58 from Catch-You/fix/사건상세조회
Browse files Browse the repository at this point in the history
[REFACTOR] parameter 디폴트 값 삭제
  • Loading branch information
xloyeon authored Dec 17, 2023
2 parents 0d50dc2 + 52c7a4a commit 9de5723
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public BaseResponse<Long> selectCriminalMontage(@PathVariable Long criminalId,

//일반 유저(미로그인)들이 공개된 사건 리스트 조회
@GetMapping("/open")
public OpenCriminalListResponse getOpenCriminalList(@RequestParam(value="region", defaultValue = "서울") Region region){
public OpenCriminalListResponse getOpenCriminalList(@RequestParam(value="region") Region region){
return criminalService.getOpenCriminalList(region);
}

Expand Down

0 comments on commit 9de5723

Please sign in to comment.