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.
🧩 작업 내용
나의 채움 GET 네트워크 통신 연결했습니다
🪁 PR Point
나의 채움은 총 4가지 경우의 수가 있습니다
1️⃣ 내가 모집한
category: "REGISTER"를 기본으로 보내주고
status의 경우 상단의 현재 활동중인 모임은 true로
종료된 모임은 false로 request parameter를 보내줘야합니당
2️⃣ 내가 신청한
category: "APPLY"를 기본으로 보내주고
status는 위와 동일해요오
같은 API를 동시에 2번 호출해주어야 하기 때문에
현재 활동 중인 모임과 종료된 모임을 동시에 요청해야 하기 때문에,
DispatchGroup을 활용하여 비동기 요청을 관리해주었어용
dispatchGroup.enter()
로 API 호출 전 선언해주고응답이 끝나는 부분에 dispatchGroup.leave()을 추가해줍니다!
두 개의 API 호출이 다 끝나면 UI 업데이트 해줍니다
끄읕! 쉽죠? 큭큭
📱 스크린샷
🔗 Issue
Resolved #96