-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. 그룹 가입 API에 응답 추가 및 CompleteView 데이터 연동 2. 투두 작성 화면 maximumTodoCount 연동 및 내비게이션 연동 3. 메인 화면 filter > empty list case 작업 4. PushNoticeTypes 추가 및 handleNotification 추가 5. 이미지 불러오는 임시 로직 추가 6. DogetherTodoItem UI 수정 7. 순위 화면 달성률 표현 단위 수정 8. 메인 화면 viewWillAppear 임시로 추가 (새로고침) 9. 투두 검사 모달에서 투두 여러개일 때 케이스 주석 (데모데이에서는 한개일 때로 케이스 제한) 10. 마이 페이지 내 통계 버튼 주석 11. saveNotiToken 추가 (UserDefaultsManager에 fcmToken 추가 및 로그인 성공시 저장하도록 구현) 12. 이미지 압축 로직 추가
- Loading branch information
1 parent
30e52b3
commit a0af06a
Showing
29 changed files
with
409 additions
and
124 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// | ||
// JoinGroupResponse.swift | ||
// dogether | ||
// | ||
// Created by seungyooooong on 2/20/25. | ||
// | ||
|
||
import Foundation | ||
|
||
struct JoinGroupResponse: Decodable { | ||
let name: String | ||
let maximumMemberCount: Int | ||
let startAt: String | ||
let endAt: String | ||
let durationOption: Int | ||
} | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// | ||
// PushNoticeTypes.swift | ||
// dogether | ||
// | ||
// Created by seungyooooong on 2/20/25. | ||
// | ||
|
||
import Foundation | ||
|
||
enum PushNoticeTypes: String { | ||
case join = "JOIN" | ||
case certification = "CERTIFICATION" | ||
case review = "REVIEW" | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.