Skip to content

Commit

Permalink
Merge pull request #162 from TRIP-Side-Project/dev
Browse files Browse the repository at this point in the history
버그 수정 반영 Main merge
  • Loading branch information
gkfktkrh153 authored Dec 28, 2023
2 parents 652921d + abe29f9 commit 3ca6d02
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ public ResponseEntity<GetItemResponse> getItem(@PathVariable Long ItemId) {
@GetMapping
public ResponseEntity<GetItemsResponse> getItems(
@PageableDefault(size = 8) Pageable pageable,
@RequestParam int sortCode,
@RequestParam String title,
@RequestParam String tagName
@RequestParam(value = "sortCode", defaultValue = "0") int sortCode,
@RequestParam(value = "title", required = false) String title,
@RequestParam(value = "tag", required = false) String tagName
) {
GetItemsResponse itemsDetail;

Expand Down

0 comments on commit 3ca6d02

Please sign in to comment.