-
Notifications
You must be signed in to change notification settings - Fork 0
[Network] #206 - 이미지 앨범 이동 및 복제 API 연결 #208
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
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
3f99739
[Delete] #206 - 논의 완료된 TODO 사항 제거
OneTen19 7c8d9bd
[Feat] #206 - Data, Domain API 연결 세팅
OneTen19 64213e7
[Style] #204 - 프로필 사진 변경 기능 사용성 확보
Remaked-Swain b518312
[Fix] #204 - 프로필 편집 후 아카이빙 탭이 나타나는 문제 해소
Remaked-Swain e7dbc2a
[Chore] #204 - 더미 유저정보 추가
Remaked-Swain 49ab5c9
[Refactor] #204 - 유저 로그인 세션 주입방식 변경
Remaked-Swain 1672f0a
[Chore] #202 - 어색한 로딩메세지 수정
OneTen19 cd073ea
[Chore] #202 - DateFormatters 통합
OneTen19 570d871
[Chore] #202 - imageURL들을 꺼내오는 작업을 백그라운드 스레드 과정에 포함시켜 메인스레드의 부담 완화
OneTen19 b391c72
[Chore] #202 - 불필요한 NavigationStack 래핑 제거
OneTen19 449d759
[Feat] #202 - 현재 폴더 선택 불가 및 복제시 다중 폴더 선택 가능하게 수정
OneTen19 156b913
[Feat] #202 - 이동과 복제와 관련된 작업 하위 리듀서들로 캡슐화
OneTen19 25eecb3
[Chore] #202 - 모든 사진 보기에서는 ArchiveImageFooter에 사진 이동 숨기기
OneTen19 6fe3e0e
[Chore] #202 - PhotoSelectionPurpose 레이어 변경
OneTen19 fe461ae
[Chore] #206 - 변경된 dto 반영
OneTen19 d4db35e
[Network] #206 - API 연결
OneTen19 0c5db09
Merge remote-tracking branch 'refs/remotes/origin/develop'
OneTen19 2761cf3
[Chore] #206 - 팀 컨벤션 맞춰 변수명 수정
OneTen19 ecc6890
[Chore] #206 - ifelse문 switch문으로 수정
OneTen19 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
30 changes: 30 additions & 0 deletions
30
Neki-iOS/Features/Archive/Sources/Data/Sources/DTO/UpdateMappingPhotoDTO.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,30 @@ | ||
| // | ||
| // UpdateMappingPhotoDTO.swift | ||
| // Neki-iOS | ||
| // | ||
| // Created by OneTen on 4/12/26. | ||
| // | ||
|
|
||
| import Foundation | ||
|
|
||
| public enum UpdateMappingPhotoDTO { | ||
| public struct MovePhotos: Encodable { | ||
| let sourceFolderID: Int | ||
| let photoIDs, targetFolderIDs: [Int] | ||
|
|
||
| enum CodingKeys: String, CodingKey { | ||
| case sourceFolderID = "sourceFolderId" | ||
| case photoIDs = "photoIds" | ||
| case targetFolderIDs = "targetFolderIds" | ||
| } | ||
| } | ||
|
|
||
| public struct DuplicatePhotos: Encodable { | ||
| let photoIDs, targetFolderIDs: [Int] | ||
|
|
||
| enum CodingKeys: String, CodingKey { | ||
| case photoIDs = "photoIds" | ||
| case targetFolderIDs = "targetFolderIds" | ||
| } | ||
| } | ||
| } | ||
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
p2)
팀 내 컨벤션에 따르면 식별자의 복수형에 대하여
ID는 대문자로, 뒤의s는 소문자로 작성되어야 합니다.