Skip to content

Commit

Permalink
[merge] 공지사항 댓글 삭제 시 호스트 삭제 권한 추가
Browse files Browse the repository at this point in the history
[fix] 공지사항 댓글 삭제 시 호스트 삭제 권한 추가
  • Loading branch information
lreowy authored Sep 15, 2024
2 parents 5ec0490 + a908fe7 commit 3265233
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ public void deleteComment(Long userId, Long noticeId, Long commentId) {
Notice notice = noticeRepository.findNoticeByIdOrThrow(noticeId);
Comment comment = commentRepository.findCommentByIdOrThrow(commentId);

if (comment.getCommenter().getId().equals(userId)) {
//댓글 작성자가 사용자 본인인 경우 or 사용자가 해당 모임의 호스트인 경우 삭제 가능
if (comment.getCommenter().getId().equals(userId) || userId.equals(
notice.getMoim().getHost().getUser().getId())) {
commentRepository.delete(comment);
} else {
throw new CustomException(ErrorCode.NOT_AUTHOR);
Expand Down

0 comments on commit 3265233

Please sign in to comment.