시리즈 #167

Merged
klaus merged 35 commits from test into main 2024-04-26 18:51:10 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 05c293ed6d - Show all commits

View File

@ -4,7 +4,7 @@ data class GetCreatorAdminContentSeriesDetailResponse(
val seriesId: Long,
val title: String,
val introduction: String,
val coverImage: String,
val coverImageUrl: String,
val publishedDaysOfWeek: String,
val genre: String,
val keywords: String,

View File

@ -62,7 +62,7 @@ data class Series(
seriesId = id!!,
title = title,
introduction = introduction,
coverImage = "$imageHost/$coverImage!!",
coverImageUrl = "$imageHost/${coverImage!!}",
publishedDaysOfWeek = publishedDaysOfWeekText(),
genre = genre!!.genre,
keywords = keywordList.map { it.keyword!!.tag }.joinToString(" ") { it },