test #214

Merged
klaus merged 13 commits from test into main 2024-09-23 06:24:12 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 738f1ea9fe - Show all commits

View File

@ -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,

View File

@ -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
) )
} }