콘텐츠 수정 request data 이름 변경 - audioContentId -> contentId

This commit is contained in:
Yu Sung
2023-08-24 12:17:35 +09:00
parent 65b43e4c0d
commit 828c507742
3 changed files with 3 additions and 3 deletions

View File

@@ -74,6 +74,6 @@ final class ContentRepository {
}
func donation(contentId: Int, can: Int, comment: String) -> AnyPublisher<Response, MoyaError> {
return api.requestPublisher(.donation(request: AudioContentDonationRequest(audioContentId: contentId, donationCan: can, comment: comment)))
return api.requestPublisher(.donation(request: AudioContentDonationRequest(contentId: contentId, donationCan: can, comment: comment)))
}
}