Skip to content

Commit

Permalink
[fix] #234 질의응답게시판 자치기구 계정 댓글 삭제 권한 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JangInho committed Mar 3, 2025
1 parent 36aa193 commit 1ee4d34
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ public CommentListResponse applyPermissionsToCommentList(CommentListResponse com
if (postAclManager.hasPermission(userId,"질의응답게시판","REACTION")){
allowedAuthorities.add("REACTION");
}
if (postAclManager.hasPermission(userId,"질의응답게시판","DELETE_COMMENT")){
allowedAuthorities.add("DELETE_COMMENT");
}
}

return commentListRes.validAuthorities(allowedAuthorities);
Expand Down

0 comments on commit 1ee4d34

Please sign in to comment.