docs(community): 댓글 작성자 식별자 계약을 갱신한다
This commit is contained in:
@@ -182,6 +182,7 @@ data class CreatorChannelCommunityCommentsResponse(
|
||||
|
||||
data class CreatorChannelCommunityCommentResponse(
|
||||
val commentId: Long,
|
||||
val writerId: Long,
|
||||
val writerProfileImageUrl: String,
|
||||
val writerNickname: String,
|
||||
val content: String,
|
||||
@@ -192,6 +193,7 @@ data class CreatorChannelCommunityCommentResponse(
|
||||
fun from(comment: CreatorChannelCommunityComment): CreatorChannelCommunityCommentResponse {
|
||||
return CreatorChannelCommunityCommentResponse(
|
||||
commentId = comment.commentId,
|
||||
writerId = comment.writerId,
|
||||
writerProfileImageUrl = comment.writerProfileImageUrl,
|
||||
writerNickname = comment.writerNickname,
|
||||
content = comment.content,
|
||||
@@ -225,6 +227,7 @@ data class CreatorChannelCommunityRepliesResponse(
|
||||
|
||||
data class CreatorChannelCommunityReplyResponse(
|
||||
val commentId: Long,
|
||||
val writerId: Long,
|
||||
val writerProfileImageUrl: String,
|
||||
val writerNickname: String,
|
||||
val content: String,
|
||||
@@ -234,6 +237,7 @@ data class CreatorChannelCommunityReplyResponse(
|
||||
fun from(reply: CreatorChannelCommunityReply): CreatorChannelCommunityReplyResponse {
|
||||
return CreatorChannelCommunityReplyResponse(
|
||||
commentId = reply.commentId,
|
||||
writerId = reply.writerId,
|
||||
writerProfileImageUrl = reply.writerProfileImageUrl,
|
||||
writerNickname = reply.writerNickname,
|
||||
content = reply.content,
|
||||
@@ -270,6 +274,7 @@ data class CreatorChannelCommunityComments(
|
||||
|
||||
data class CreatorChannelCommunityComment(
|
||||
val commentId: Long,
|
||||
val writerId: Long,
|
||||
val writerProfileImageUrl: String,
|
||||
val writerNickname: String,
|
||||
val content: String,
|
||||
@@ -286,6 +291,7 @@ data class CreatorChannelCommunityReplies(
|
||||
|
||||
data class CreatorChannelCommunityReply(
|
||||
val commentId: Long,
|
||||
val writerId: Long,
|
||||
val writerProfileImageUrl: String,
|
||||
val writerNickname: String,
|
||||
val content: String,
|
||||
|
||||
Reference in New Issue
Block a user