test #432

Merged
klaus merged 17 commits from test into main 2026-07-07 18:07:28 +00:00
2 changed files with 8 additions and 0 deletions
Showing only changes of commit bf103dedd7 - Show all commits

View File

@@ -182,6 +182,7 @@ data class CreatorChannelCommunityCommentsResponse(
data class CreatorChannelCommunityCommentResponse( data class CreatorChannelCommunityCommentResponse(
val commentId: Long, val commentId: Long,
val writerId: Long,
val writerProfileImageUrl: String, val writerProfileImageUrl: String,
val writerNickname: String, val writerNickname: String,
val content: String, val content: String,
@@ -192,6 +193,7 @@ data class CreatorChannelCommunityCommentResponse(
fun from(comment: CreatorChannelCommunityComment): CreatorChannelCommunityCommentResponse { fun from(comment: CreatorChannelCommunityComment): CreatorChannelCommunityCommentResponse {
return CreatorChannelCommunityCommentResponse( return CreatorChannelCommunityCommentResponse(
commentId = comment.commentId, commentId = comment.commentId,
writerId = comment.writerId,
writerProfileImageUrl = comment.writerProfileImageUrl, writerProfileImageUrl = comment.writerProfileImageUrl,
writerNickname = comment.writerNickname, writerNickname = comment.writerNickname,
content = comment.content, content = comment.content,
@@ -225,6 +227,7 @@ data class CreatorChannelCommunityRepliesResponse(
data class CreatorChannelCommunityReplyResponse( data class CreatorChannelCommunityReplyResponse(
val commentId: Long, val commentId: Long,
val writerId: Long,
val writerProfileImageUrl: String, val writerProfileImageUrl: String,
val writerNickname: String, val writerNickname: String,
val content: String, val content: String,
@@ -234,6 +237,7 @@ data class CreatorChannelCommunityReplyResponse(
fun from(reply: CreatorChannelCommunityReply): CreatorChannelCommunityReplyResponse { fun from(reply: CreatorChannelCommunityReply): CreatorChannelCommunityReplyResponse {
return CreatorChannelCommunityReplyResponse( return CreatorChannelCommunityReplyResponse(
commentId = reply.commentId, commentId = reply.commentId,
writerId = reply.writerId,
writerProfileImageUrl = reply.writerProfileImageUrl, writerProfileImageUrl = reply.writerProfileImageUrl,
writerNickname = reply.writerNickname, writerNickname = reply.writerNickname,
content = reply.content, content = reply.content,
@@ -270,6 +274,7 @@ data class CreatorChannelCommunityComments(
data class CreatorChannelCommunityComment( data class CreatorChannelCommunityComment(
val commentId: Long, val commentId: Long,
val writerId: Long,
val writerProfileImageUrl: String, val writerProfileImageUrl: String,
val writerNickname: String, val writerNickname: String,
val content: String, val content: String,
@@ -286,6 +291,7 @@ data class CreatorChannelCommunityReplies(
data class CreatorChannelCommunityReply( data class CreatorChannelCommunityReply(
val commentId: Long, val commentId: Long,
val writerId: Long,
val writerProfileImageUrl: String, val writerProfileImageUrl: String,
val writerNickname: String, val writerNickname: String,
val content: String, val content: String,

View File

@@ -194,6 +194,7 @@ data class CreatorChannelCommunityCommentsResponse(
data class CreatorChannelCommunityCommentResponse( data class CreatorChannelCommunityCommentResponse(
val commentId: Long, val commentId: Long,
val writerId: Long,
val writerProfileImageUrl: String, val writerProfileImageUrl: String,
val writerNickname: String, val writerNickname: String,
val content: String, val content: String,
@@ -203,6 +204,7 @@ data class CreatorChannelCommunityCommentResponse(
data class CreatorChannelCommunityReplyResponse( data class CreatorChannelCommunityReplyResponse(
val commentId: Long, val commentId: Long,
val writerId: Long,
val writerProfileImageUrl: String, val writerProfileImageUrl: String,
val writerNickname: String, val writerNickname: String,
val content: String, val content: String,