feat: 댓글 구조 변경
작성자 표시를 위해 CommentResponse에 isPostAuthor 필드 추가
This commit is contained in:
@@ -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() // 태그는 나중에 구현
|
||||
)
|
||||
Reference in New Issue
Block a user