-
Notifications
You must be signed in to change notification settings - Fork 0
[DEPLOY] : 3.0.0 #279
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
Merged
Merged
[DEPLOY] : 3.0.0 #279
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
0ee0d14
fix/#273: 북마크 아이콘 수정
pinocchio22 8b0e9c1
fix/#273: 북마크 전체탭 정렬 수정
pinocchio22 cc8dbc5
fix/#273: 연속탈퇴 문제 수정
pinocchio22 478bf80
feat/#273: 로그인 화면 뒤로가기 버튼 추가
pinocchio22 172c77b
fix/#273: 약관 말줄임표시 수정
pinocchio22 693d7bc
fix/#273: 알림 설정 유도 이미지 노출 조건 수정
pinocchio22 37937c4
feat/#273: 최근 로그인 플랫폼 판별 / FCM 토큰 업데이트 시점 추가(앱 진입)
pinocchio22 efa8e6e
fix/#273: 상세 페이지 북마크 구조 변경 / 알람 응답 모델 date 타입 변경
pinocchio22 5f38012
fix/#273: 알림 읽음 처리
pinocchio22 ea1cfd9
fix/#273: 연속검색시 초성검색 불가능
pinocchio22 ba530db
fix/#273: 연속검색 엔터 허용
pinocchio22 b4d4533
fix/#273: 연속검색시 최근 검색어 추가
pinocchio22 ef93d2b
fix/#273: 애플 회원가입 코드 수정
pinocchio22 bf4886e
fix/#273: 북먀크탭 아이콘 수정
pinocchio22 9f686a8
style/#273: Apply SwiftLint autocorrect
github-actions[bot] 5433f4b
fix/#273: 키보드 액세서리뷰 -> 닉네임 수정 액세서리뷰
pinocchio22 d13984f
fix/#273: 북마크 구조 수정 필요 + 북마크 / 도감 데이터 동기화 필요
pinocchio22 2f5afb7
Merge branch 'refactor/#273-Test-Feedback' of github.com:Team-Maple/M…
pinocchio22 1553e60
style/#273: Apply SwiftLint autocorrect
github-actions[bot] 591c95e
fix/#273: 상세 -> 컬렉션 추가만 임시 비활성화
pinocchio22 4c03477
Merge branch 'refactor/#273-Test-Feedback' of github.com:Team-Maple/M…
pinocchio22 d0386c2
fix/#273: 앱 아이콘 수정
pinocchio22 4919903
fix/#273: 북마크 추가 버튼 -> 도감(전체)탭으로 이동
pinocchio22 163a95d
fix/#273: 북마크 구조 대대적 개선(스낵바 노출 시점 수정 + 리스트 / 상세 데이터 동기화 / 상세 컬렉션추가 재활성화)
pinocchio22 c99d7c4
fix/#273: 로그아웃시 refreshToken / FCMToken도 함께 삭제
pinocchio22 ee3e86d
fix/#273: POST 요청 실패시 예외처리 (Toast 추가)
pinocchio22 2233db7
fix/#273: 컬렉션 상세 북마크 인터랙션 비활성화
pinocchio22 9ade952
fix/#273: 공지사항 / 이벤트 / 패치노트 페이징 적용
pinocchio22 79cfa0b
style/#273: Apply SwiftLint autocorrect
github-actions[bot] 47bc673
fix/#273: 로그인 시 fcm 토큰 업데이트 로직 수정
pinocchio22 ee80a3f
reafcator/#273: swiftLint에 맞게 코드 수정
pinocchio22 04b1a47
Merge branch 'refactor/#273-Test-Feedback' of github.com:Team-Maple/M…
pinocchio22 8201bdb
Merge pull request #278 from Team-Maple/refactor/#273-Test-Feedback
pinocchio22 43c4a31
fix/#dev: 제미나이 코드 수정
pinocchio22 47ee133
fix/dev: 초성 판별 로직 수정
pinocchio22 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
11 changes: 11 additions & 0 deletions
11
MLS/Data/Data/Network/DTO/BookmarkDTO/SetBookmarkDTO.swift
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| import DomainInterface | ||
|
|
||
| public struct SetBookmarkDTO: Decodable { | ||
| public let bookmarkId: Int | ||
| public let bookmarkType: String | ||
| public let resourceId: Int | ||
|
|
||
| public func toDomain() -> Int { | ||
| return self.bookmarkId | ||
| } | ||
| } |
2 changes: 1 addition & 1 deletion
2
MLS/Data/Data/Network/DTO/DictionaryDetailDTO/Item/DictionaryDetailItemResponseDTO.swift
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
2 changes: 1 addition & 1 deletion
2
MLS/Data/Data/Network/DTO/DictionaryDetailDTO/Map/DictionaryDetailMapResponseDTO.swift
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
2 changes: 1 addition & 1 deletion
2
MLS/Data/Data/Network/DTO/DictionaryDetailDTO/Quest/DictionaryDetailQuestResponseDTO.swift
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| public struct EmptyResponseDTO: Decodable { | ||
| func toBookmarkDomain() -> Int? { | ||
| return nil | ||
| } | ||
| } |
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.