feat: 관리자 태그 화면 - 그룹별 게시판 매핑 체크박스
CI / build (push) Failing after 13m38s

- 전역 단일 카테고리 선택 제거 → 각 태그 그룹에 사용 게시판 체크박스(커뮤니티/짠테크/재테크 팁)
- 저장 시 boards 함께 전송, 선택 없으면 전체 게시판
- 글쓰기 화면은 현재 게시판에 매핑된 그룹 태그만 노출(boardApi.tagGroups(category))

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
ByungCheol
2026-06-28 13:34:40 +09:00
parent 7e38eae2b7
commit c167875567
3 changed files with 54 additions and 46 deletions
+2 -2
View File
@@ -38,8 +38,8 @@ export const boardApi = {
tags() {
return http.get('/board/tags')
},
tagGroups() {
return http.get('/board/tag-groups')
tagGroups(category) {
return http.get('/board/tag-groups', { params: { category: category || undefined } })
},
addComment(id, content) {
return http.post(`/board/posts/${id}/comments`, { content })