Skip to content

Commit

Permalink
refactor: api경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyeonsuLee committed Nov 12, 2024
1 parent 19fea9d commit 17a8658
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ ResponseEntity<ShopsResponseV2> getShopsV2(
}
)
@Operation(summary = "주변상점 검색어에 따른 연관검색어 조회")
@GetMapping("/search/related/{query}")
@GetMapping("/shops/search/related/{query}")
ResponseEntity<RelatedKeyword> getRelatedKeyword(
@PathVariable(name = "query") String query
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ public ResponseEntity<ShopReviewResponse> getReview(
return ResponseEntity.ok(shopReviewResponse);
}

@GetMapping("/search/related/{query}")
@GetMapping("/shops/search/related/{query}")
public ResponseEntity<RelatedKeyword> getRelatedKeyword(
@PathVariable(name = "query") String query
) {
Expand Down

0 comments on commit 17a8658

Please sign in to comment.