docs(community): 비밀 댓글 응답 요구사항을 갱신한다

This commit is contained in:
2026-07-08 01:26:08 +09:00
parent 8b2d26c7d3
commit 4aa73d1516

View File

@@ -173,6 +173,7 @@ data class CreatorChannelCommunityPostDetailResponse(
- `comments`는 조회자가 볼 수 있는 활성 최상위 댓글 목록이다.
- 댓글 작성자가 조회자와 차단/피차단 관계이면 목록과 전체 개수에서 제외한다.
- 비밀 댓글은 게시물 작성자 또는 댓글 작성자 본인에게만 노출한다.
- 각 댓글에는 비밀 댓글 여부인 `isSecret`을 포함한다.
- 댓글 정렬은 최신순 `createdAt desc`, `id desc`를 따른다.
- 각 댓글에는 최신 답글 1개를 `latestReply`로 포함한다.
- 최신 답글은 해당 댓글의 활성 답글 중 조회자가 볼 수 있는 답글을 `createdAt desc`, `id desc`로 정렬했을 때 첫 번째 항목이다.
@@ -198,6 +199,8 @@ data class CreatorChannelCommunityCommentResponse(
val writerProfileImageUrl: String,
val writerNickname: String,
val content: String,
@JsonProperty("isSecret")
val isSecret: Boolean,
val createdAtUtc: String,
val latestReply: CreatorChannelCommunityReplyResponse?
)