-
Notifications
You must be signed in to change notification settings - Fork 3
[Feat] #74 - 수정하기 기능 구현 및 분기처리 #76
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
L-j-h-c
merged 6 commits into
TeamRecorDream:develop
from
L-j-h-c:feature/#74-DreamWriteModify
Dec 27, 2022
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8bff428
[Feat] #74 - 변경하기 API 구현
L-j-h-c c01c72a
[Feat] #74 - 수정하기 데이터 변환 및 비즈니스 로직 구현
L-j-h-c ffbcea6
[Feat] #74 - 녹음 파일 다운로드 & 비동기처리 구현
L-j-h-c 1f1022d
[Feat] #74 - 텍스트필드 플레이스홀더 입력 시 분기처리, 녹음 뷰 활성화 분기처리
L-j-h-c 4281ac1
[Feat] #74 - 수정하기 API 및 기능 구현
L-j-h-c 3e337fa
Merge branch 'develop' of https://github.com/TeamRecorDream/RecorDrea…
L-j-h-c 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
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
38 changes: 38 additions & 0 deletions
38
...m-iOS/Projects/Modules/RD-Network/Sources/Responses/Record/DreamWriteModifyResponse.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,38 @@ | ||
| // | ||
| // DreamWriteModifyResponse.swift | ||
| // RD-Network | ||
| // | ||
| // Created by Junho Lee on 2022/12/26. | ||
| // Copyright © 2022 RecorDream-iOS. All rights reserved. | ||
| // | ||
|
|
||
| import Foundation | ||
|
|
||
| import Foundation | ||
|
|
||
| // MARK: - DreamWriteModifyResponse | ||
| public struct DreamWriteModifyResponse: Codable { | ||
| public let id, writer, date, title: String | ||
| public let voice: Voice? | ||
| public let content: String? | ||
| public let emotion: Int | ||
| public let genre: [Int] | ||
| public let note: String? | ||
|
|
||
| enum CodingKeys: String, CodingKey { | ||
| case id = "_id" | ||
| case writer, date, title, voice, content, emotion | ||
| case genre, note | ||
| } | ||
| } | ||
|
|
||
| // MARK: - Voice | ||
| public struct Voice: Codable { | ||
| public let id: String | ||
| public let url: String | ||
|
|
||
| enum CodingKeys: String, CodingKey { | ||
| case id = "_id" | ||
| case url | ||
| } | ||
| } |
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.
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.
신기방기... 👍