Skip to content

Commit

Permalink
🚑 [HOTFIX]: content name 필드 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
anxi01 committed Apr 4, 2024
1 parent 288e6f0 commit 12eef56
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@
public class ContentData {
private String id;
private String type;
private String name;
private String data;
}
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ private static List<DetailPortfolioContentDto> getPortfolioContents(List<Content
DetailPortfolioContentDto contentDto = new DetailPortfolioContentDto();
contentDto.setId(contentData.getId());
contentDto.setType(contentData.getType());
contentDto.setName(contentData.getName());
contentDto.setData(contentData.getData());
contentDtoList.add(contentDto);
}
Expand Down

0 comments on commit 12eef56

Please sign in to comment.