isNotice -> isNotify로 변경
This commit is contained in:
parent
2a70a7824f
commit
738f1ea9fe
|
@ -103,7 +103,7 @@ class ContentSeriesService(
|
||||||
nickname = series.member!!.nickname,
|
nickname = series.member!!.nickname,
|
||||||
profileImage = "$coverImageHost/${series.member!!.profileImage}",
|
profileImage = "$coverImageHost/${series.member!!.profileImage}",
|
||||||
isFollow = creatorFollowing?.isFollow ?: false,
|
isFollow = creatorFollowing?.isFollow ?: false,
|
||||||
isNotice = creatorFollowing?.isNotify ?: false
|
isNotify = creatorFollowing?.isNotify ?: false
|
||||||
),
|
),
|
||||||
rentalMinPrice = rentalMinPrice,
|
rentalMinPrice = rentalMinPrice,
|
||||||
rentalMaxPrice = rentalMaxPrice,
|
rentalMaxPrice = rentalMaxPrice,
|
||||||
|
|
|
@ -28,6 +28,6 @@ data class GetSeriesDetailResponse(
|
||||||
val nickname: String,
|
val nickname: String,
|
||||||
val profileImage: String,
|
val profileImage: String,
|
||||||
val isFollow: Boolean,
|
val isFollow: Boolean,
|
||||||
val isNotice: Boolean
|
val isNotify: Boolean
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue