Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT] 카테고리에 속한 글 개수 조회 API #967

Open
5 tasks
zeus6768 opened this issue Dec 14, 2024 · 2 comments
Open
5 tasks

[FEAT] 카테고리에 속한 글 개수 조회 API #967

zeus6768 opened this issue Dec 14, 2024 · 2 comments
Assignees
Labels
feature 기능 추가

Comments

@zeus6768
Copy link
Contributor

zeus6768 commented Dec 14, 2024

📌 어떤 기능인가요?

📜 작업 상세 내용

BE

  • 카테고리별 템플릿 개수 조회
    • 반정규화

FE

  • API 변경 사항 반영
  • 카테고리 갯수 UI 디자인
  • 카테고리 갯수 UI 작업

⏳ 예상 소요 시간 (예상 해결 날짜)

이슈를 완료하기까지 예상되는 소요 시간을 시간 or 일 단위로 작성해주세요.

0일 0시간 소요 (00/00 00:00)

🔍 참고할만한 자료(선택)

@zeus6768 zeus6768 added the feature 기능 추가 label Dec 14, 2024
@HoeSeong123 HoeSeong123 self-assigned this Dec 14, 2024
@Jaymyong66
Copy link
Contributor

@HoeSeong123 요청, 응답 인터페이스 바뀐 부분 먼저 말해주심 좋아여~!

@HoeSeong123
Copy link
Contributor

  • 카테고리 조회 응답만 아래와 같이 수정될 것 같아요~~
  • 뭔가 더 수정될 거 같으면 바로 얘기하겠습니다

GET /categories

// before
{
  "categories": [
    {
      "id": 1,
      "name": "Spring",
      "ordinal": 1
    }
  ]
}

// after
{
  "categories": [
    {
      "id": 1,
      "name": "Spring",
      "ordinal": 1,
      "count": 1
    }
  ]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature 기능 추가
Projects
Status: Todo
Development

No branches or pull requests

3 participants