feat: 댓글 구조 변경

작성자 표시를 위해 CommentResponse에 isPostAuthor 필드 추가
This commit is contained in:
pwy3282040@msecure.co
2025-12-27 00:14:57 +09:00
parent ef6ffa5670
commit 884853586d
9 changed files with 69 additions and 31 deletions

View File

@@ -56,7 +56,7 @@ data class PostSummaryResponse(
data class PostSaveRequest(
val title: String,
val content: String, // 마크다운 원문
val slug: String,
val slug: String? = null,
val categoryId: Long? = null,
val tags: List<String> = emptyList() // 태그는 나중에 구현
)