Skip to content

Feature#337 관리자 문의게시판 추가#347

Merged
kimgho merged 12 commits into
mainfrom
feature#337
Aug 22, 2025
Merged

Feature#337 관리자 문의게시판 추가#347
kimgho merged 12 commits into
mainfrom
feature#337

Conversation

@kimgho
Copy link
Copy Markdown
Contributor

@kimgho kimgho commented Aug 21, 2025

✅ Linked Issue

🔍 What I did

  • 관리자용 문의관리용 페이지 추가

@vercel
Copy link
Copy Markdown

vercel Bot commented Aug 21, 2025

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Preview Comments Updated (UTC)
mosu-client Ready Ready Preview Comment Aug 21, 2025 5:00pm

@github-actions
Copy link
Copy Markdown

Warnings
⚠️ PR에 Reviewers가 지정되어 있지 않습니다. 리뷰어를 지정해주세요.
⚠️ package.json이 변경되었습니다. 새로운 의존성이 추가되었다면 필요성을 설명해주세요.
Messages
📖 ✅ PR 제목에 이슈 번호가 포함되어 있습니다.
📖 ✅ PR에 라벨이 지정되어 있습니다.
📖 ✅ PR에 Assignees가 지정되어 있습니다.
📖 ✅ 브랜치 이름 'feature#337'이 컨벤션을 따릅니다.
📖 ✅ TypeScript 컴파일이 성공적으로 완료되었습니다.
📖 ✅ ESLint 검사 결과 문제가 없습니다.

📦 Package 변경사항

  • mosu-admin/package.json

📝 추가 및 변경된 파일

총 49개 파일 변경

├── 📂 mosu-admin/
│   ├── 📋 package.json
│   └── 📂 src/
│       ├── 📂 constants/
│       │   └── 📘 routes.ts
│       ├── 📂 layout/
│       │   ├── ⚛️ navItems.tsx
│       │   └── 📂 ui/
│       │       └── ⚛️ MainHeader.tsx
│       ├── ⚛️ routes.tsx
│       ├── 📂 api/
│       │   ├── 📂 faq/
│       │   │   ├── 📘 createFaq.ts
│       │   │   ├── 📘 deleteFaq.ts
│       │   │   ├── 📘 getFaqDetail.ts
│       │   │   ├── 📘 getFaqList.ts
│       │   │   └── 📘 updateFaq.ts
│       │   ├── 📂 file/
│       │   │   └── 📘 uploadFile.ts
│       │   ├── 📂 inquiry/
│       │   │   ├── 📘 deleteInquiry.ts
│       │   │   ├── 📘 getInquiryDetail.ts
│       │   │   ├── 📘 getInquiryList.ts
│       │   │   ├── 📘 postInquiryAnswer.ts
│       │   │   └── 📘 updateInquiryAnswer.ts
│       │   └── 📂 notice/
│       │       ├── 📘 deleteNotice.ts
│       │       ├── 📘 getNoticeDetail.ts
│       │       ├── 📘 getNoticeList.ts
│       │       ├── 📘 postNotice.ts
│       │       └── 📘 updateNotice.ts
│       ├── 📂 common/
│       │   ├── 📂 lib/
│       │   │   └── 📘 auth-storage.ts
│       │   └── 📂 ui/
│       │       └── ⚛️ separator.tsx
│       ├── 📂 components/
│       │   ├── ⚛️ InquiryBoard.tsx
│       │   ├── ⚛️ PostContent.tsx
│       │   ├── 📂 faq/
│       │   │   ├── ⚛️ FAQAddButton.tsx
│       │   │   ├── ⚛️ FAQTabContent.tsx
│       │   │   ├── ⚛️ FAQTable.tsx
│       │   │   └── 📘 types.ts
│       │   ├── 📂 inquiry/
│       │   │   ├── ⚛️ InquiryFilter.tsx
│       │   │   ├── ⚛️ InquiryPagination.tsx
│       │   │   ├── ⚛️ InquiryReplyForm.tsx
│       │   │   ├── ⚛️ InquiryTab.tsx
│       │   │   ├── ⚛️ InquiryTabContent.tsx
│       │   │   ├── ⚛️ InquiryTable.tsx
│       │   │   └── 📘 types.ts
│       │   ├── 📂 notice/
│       │   │   ├── ⚛️ NoticeAddButton.tsx
│       │   │   ├── ⚛️ NoticeTabContent.tsx
│       │   │   ├── ⚛️ NoticeTable.tsx
│       │   │   └── 📘 types.ts
│       │   └── 📂 signin/
│       │       └── ⚛️ LoginModal.tsx
│       ├── 📂 hooks/
│       │   ├── 📂 faq/
│       │   │   └── ⚛️ useFaqActions.tsx
│       │   ├── 📂 inquiry/
│       │   │   └── ⚛️ useInquiryReplyAction.tsx
│       │   └── 📂 notice/
│       │       └── ⚛️ useNoticeActions.tsx
│       └── 📂 pages/
│           ├── ⚛️ FAQDetailPage.tsx
│           ├── ⚛️ InquiryDetailPage.tsx
│           ├── ⚛️ InquiryPage.tsx
│           └── ⚛️ NoticeDetailPage.tsx
└── 📄 yarn.lock

Generated by 🚫 dangerJS against c408246

@github-actions
Copy link
Copy Markdown

✅ Mosu Admin 빌드가 성공적으로 완료되었습니다!

📋 빌드 결과

  • ✅ DangerJS 검사 통과
  • ✅ React 앱 빌드 성공

🚀 다음 단계

코드 리뷰 후 머지하면 프로덕션에 배포됩니다.

@kimgho kimgho requested a review from toothlessdev August 21, 2025 17:03
@kimgho kimgho enabled auto-merge August 22, 2025 09:43
@toothlessdev toothlessdev moved this to 진행중 in mosu-client Aug 22, 2025
@kimgho kimgho disabled auto-merge August 22, 2025 15:51
@kimgho kimgho merged commit 84579b8 into main Aug 22, 2025
7 of 8 checks passed
@kimgho kimgho deleted the feature#337 branch August 22, 2025 15:51
@github-project-automation github-project-automation Bot moved this from 진행중 to 완료 in mosu-client Aug 22, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: 완료

Development

Successfully merging this pull request may close these issues.

[✨ 기능 요청] 관리자 문의관리 페이지 추가

2 participants