docs(community): 댓글 작성자 식별자 계약을 갱신한다
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user