refactor: 전체 채널 조회 API 쿼리 파라미터 미지정 시 전체 반환 - #113
Open
1117mg wants to merge 1 commit into
Open
Conversation
6 tasks
PR 리뷰 결과 (자동 머지 게이트)머지를 막을 만한 필수 수정 사항을 찾지 못했습니다. 검토 범위 및 확인 내용
Blocker/Major/Minor 레벨에서 보고할 항목이 없습니다. |
SinnoLn
approved these changes
Jul 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔗 관련 이슈
Closes #105
📝 작업 내용
GET /api/v1/channels에서page/size를 모두 생략하면 페이지네이션 없이 활성 채널 전체를 반환하도록 변경 (기존: 이름순 12개)page또는size중 하나라도 지정하면 페이지 조회로 동작하고, 생략된 값은page=0/size=12로 채움요청 예시
GET /channels: 활성 채널 전체, 이름순GET /channels?page=0&size=12: 0페이지 12개GET /channels?size=20: 0페이지 20개GET /channels?page=2: 2페이지, size 기본 12GET /channels?name=11번가: 검색 결과 전체GET /channels?name=11번가&size=12: 검색 결과 0페이지 12개GET /channels?size=0: 400C-001✅ 체크리스트