feat: 게시판 공지 UI (관리자) — 작성 체크박스/상세 토글/목록 배지

- BoardWriteView: 관리자가 커뮤니티 새 글 작성 시 '공지로 등록' 체크박스
- BoardDetailView: 관리자 공지 등록/해제 버튼 + 제목 공지 배지
- BoardListView: 공지 배지 + 행 강조(최상단은 백엔드 정렬)
- boardApi: setNotice/unsetNotice

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-27 22:07:03 +09:00
parent ef1d718fb8
commit f07cb349e2
4 changed files with 76 additions and 2 deletions
+7
View File
@@ -53,4 +53,11 @@ export const boardApi = {
unblock(id) {
return http.post(`/board/posts/${id}/unblock`)
},
// 공지 설정/해제 (관리자) — 목록 최상단 고정
setNotice(id) {
return http.post(`/board/posts/${id}/notice`)
},
unsetNotice(id) {
return http.post(`/board/posts/${id}/unnotice`)
},
}