Skip to content

Commit

Permalink
Merge pull request #55 from Drink-Easy/feature/searchWine
Browse files Browse the repository at this point in the history
#48 Refactor : WineController url 수정
  • Loading branch information
jeongyeon0208 authored Aug 16, 2024
2 parents b8143ef + 8f30905 commit 536e53a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class WineController {


// 검색
@GetMapping("/")
@GetMapping
public ApiResponse<List<SearchWineResponseDTO>> searchWine(@RequestBody SearchWineRequestDTO searchWineRequestDTO) {
List<SearchWineResponseDTO> searchWineResponseDTOS = wineService.searchWinesByName(searchWineRequestDTO);
return ApiResponse.onSuccess(searchWineResponseDTOS);
Expand Down

0 comments on commit 536e53a

Please sign in to comment.