feat: 댓글 신고 블라인드 관리자 해제 버튼
CI / build (push) Failing after 11m47s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 18:17:11 +09:00
parent 59f38b3348
commit 8be7072614
2 changed files with 23 additions and 0 deletions
+4
View File
@@ -65,6 +65,10 @@ export const boardApi = {
reportComment(commentId) {
return http.post(`/board/comments/${commentId}/report`)
},
// 댓글 블라인드 해제 (관리자)
unblockComment(commentId) {
return http.post(`/board/comments/${commentId}/unblock`)
},
block(id, reason) {
return http.post(`/board/posts/${id}/block`, { reason })
},