Skip to content

Commit

Permalink
Merge pull request #45 from UnivApp/feature/restaurant-refactor2
Browse files Browse the repository at this point in the history
feat: 메뉴 이미지 제거
  • Loading branch information
nyeroni authored Sep 8, 2024
2 parents 28ba4ee + 8432953 commit 4e22578
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,4 @@ public class MenuItemResponse {
private String price;
private String description;
private String menuCategory;
private String imageUrl;
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ private MenuItemResponse convertToMenuItemDto(MenuItem menuItem) {
menuItem.getName(),
menuItem.getPrice(),
menuItem.getDescription(),
menuItem.getCategory().getDisplayName(),
menuItem.getImageUrl()
menuItem.getCategory().getDisplayName()
);
}

Expand Down

0 comments on commit 4e22578

Please sign in to comment.