test #432

Merged
klaus merged 17 commits from test into main 2026-07-07 18:07:28 +00:00
Showing only changes of commit 128fb232d0 - Show all commits

View File

@@ -186,6 +186,8 @@ data class CreatorChannelCommunityCommentResponse(
val writerProfileImageUrl: String,
val writerNickname: String,
val content: String,
@JsonProperty("isSecret")
val isSecret: Boolean,
val createdAtUtc: String,
val latestReply: CreatorChannelCommunityReplyResponse?
) {
@@ -197,6 +199,7 @@ data class CreatorChannelCommunityCommentResponse(
writerProfileImageUrl = comment.writerProfileImageUrl,
writerNickname = comment.writerNickname,
content = comment.content,
isSecret = comment.isSecret,
createdAtUtc = comment.createdAt.toUtcIso(),
latestReply = comment.latestReply?.let(CreatorChannelCommunityReplyResponse::from)
)
@@ -278,6 +281,7 @@ data class CreatorChannelCommunityComment(
val writerProfileImageUrl: String,
val writerNickname: String,
val content: String,
val isSecret: Boolean,
val createdAt: LocalDateTime,
val latestReply: CreatorChannelCommunityReply?
)
@@ -353,6 +357,7 @@ data class CreatorChannelCommunityCommentRecord(
val writerProfilePath: String?,
val writerNickname: String,
val content: String,
val isSecret: Boolean,
val createdAt: LocalDateTime
)