Skip to content

Commit

Permalink
refactor: request.isAnonymous 로 수정
Browse files Browse the repository at this point in the history
- isChecked -> isAnonymous
  • Loading branch information
bellmin committed Nov 28, 2024
1 parent aed35b2 commit be2a734
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public CommentModel from(CreateCommentRequest request) {
.superCommentId(request.getParentsCommentId())
.content(request.getContent())
.presentingTeam(request.getTeamId())
.isAnonymous(request.getIsAnonymous())
.isAnonymous(request.isAnonymous())
.build();
}

Expand Down

0 comments on commit be2a734

Please sign in to comment.