Skip to content

Commit

Permalink
Merge pull request #46 from UnivApp/develop
Browse files Browse the repository at this point in the history
feat: 메뉴 이미지 제거
  • Loading branch information
nyeroni authored Sep 8, 2024
2 parents 6493fc3 + 4e22578 commit 8ed2ab1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ public class MenuItem {
@Column(nullable = false)
private String price;

@Column
private String imageUrl;

@Column(length = 1000)
private String description;

Expand Down
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 8ed2ab1

Please sign in to comment.