Skip to content

Commit

Permalink
feat: github에 push 할 시, test 자동화 #21
Browse files Browse the repository at this point in the history
  • Loading branch information
govl6113 committed Jul 27, 2023
1 parent 899503b commit d9146ed
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ public ResponseEntity<List<FeedImageResponse>> getFeedImage(
public ResponseEntity<StoreDetailResponse> getStoreDetail(@PathVariable("id") Long storeId) {
StoreResponse storeResponse = this.storeUseCase.getStore(storeId);
return ResponseEntity.ok().body(
new StoreDetailResponse(storeResponse,
this.storeUseCase.getNaverLocalApiByStore(storeResponse)));
new StoreDetailResponse(
storeResponse,
this.storeUseCase.getNaverLocalApiByStore(storeResponse)));
}

@Operation(description = "케이크샵 블로그 정보 조회")
Expand Down

0 comments on commit d9146ed

Please sign in to comment.