Skip to content

Commit

Permalink
Merge pull request #134 from GEON-PPANG/fix/#133
Browse files Browse the repository at this point in the history
[FIX] 건빵집 상세보기에 길찾기 url 값 추가해라
  • Loading branch information
sung-silver authored Aug 11, 2023
2 parents d5533c5 + 6df9b4f commit 83f3687
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 1,174 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ out/
.vscode/

### log files ###
!/logs/api.log
!/logs/api-error.log
!/logs/api*.gz
log/
*.log
*.gz
Binary file removed api/logs/api-error.2023-07-19.gz
Binary file not shown.
831 changes: 0 additions & 831 deletions api/logs/api-error.log

This file was deleted.

Empty file removed api/logs/api.log
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
public class BakeryDetailResponseDTO extends BaseBakeryResponseDTO {
private Long reviewCount;
private BreadTypeResponseDTO breadType;
private String mapUrl;
private String homepage;
private String address;
private String openingTime;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public BakeryDetailResponseDTO getBakeryDetail(Long memberId, Long bakeryId) {
.isBookMarked(isBookMarked)
.bookMarkCount(bakery.getBookMarkCount())
.reviewCount(bakery.getReviewCount())
.mapUrl(bakery.getMapUrl())
.homepage(bakery.getHomepage())
.address(
bakery.getState()
Expand Down
306 changes: 0 additions & 306 deletions logs/api-error.log

This file was deleted.

Binary file removed logs/api.2023-07-19.gz
Binary file not shown.
6 changes: 0 additions & 6 deletions logs/api.log

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ public class Bakery {

@NotNull private String bakeryName;

@NotNull private String mapUrl;

private String homepage;

private String firstNearStation;
Expand Down
Loading

0 comments on commit 83f3687

Please sign in to comment.