Skip to content

Commit

Permalink
refactor: parameter 디폴트 값 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
xloyeon committed Dec 17, 2023
1 parent 28fd6ab commit 52c7a4a
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 52c7a4a

Please sign in to comment.