Skip to content

Commit

Permalink
refactor: #15 conflict 해결 미반영사항 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
ehs208 committed Nov 8, 2024
1 parent 96ee630 commit 8cc4f47
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ public static ArticlesResponseDto of(Article article, List<String> filePath) {
return ArticlesResponseDto.builder()
.writer(article.getWriter().getUserName())
.content(article.getContent())
.isPinned(article.getIsPinned())
.hashtags(article.getHashtags())
.rePost(article.getReArticle())
.rePost(article.getRePost())
.filePath(filePath)
.build();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@ public class Comment extends BaseTimeEntity {
@NotNull
@ManyToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "post_id")
<<<<<<< HEAD
private Article article;
=======
private Article post;
>>>>>>> develop

@NotNull
@Column
Expand Down

0 comments on commit 8cc4f47

Please sign in to comment.