Skip to content

Commit

Permalink
[FIX/#60] response Dto 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
gaeun5744 committed Jul 20, 2023
1 parent 2b26abb commit 58c168c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data class ResponseDetailRetroDto(
@SerialName("reviewDate")
val reviewDate: String,
@SerialName("reviewTemplateId")
val reviewTemplateId: Int,
val reviewTemplateId: Int?,
@SerialName("contents")
val contents: List<Content>?,
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DetailRetroViewModel @Inject constructor(private val repository: MyPageRep
kotlin.runCatching {
Log.d("상세회고조회", "startOfWeek:: $startOfWeek")
Log.d("상세회고조회", "endOfWeek:: $endOfWeek")
repository.getMyDetailReview(MEMBER_ID, PROJECT_ID, "2023-07-18", "2023-07-23")
repository.getMyDetailReview(MEMBER_ID, PROJECT_ID, startOfWeek.toString(), endOfWeek.toString())
}.onSuccess { response ->
_detailRetroList.value = response.data
Log.d("상세회고조회", "response:: $response")
Expand Down

0 comments on commit 58c168c

Please sign in to comment.