Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ class CommentsController(
),
comments = comment.comments.map { mapCommentToView(it) },
created = comment.created,
modified = comment.modified
modified = comment.modified,
parentId = comment.parentCommentId,
)

private fun log(message: String) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ data class CommentView(
val author: Author,
val comments: List<CommentView> = emptyList(),
val created: LocalDateTime,
val modified: LocalDateTime
val modified: LocalDateTime,
val parentId: UUID?,
) {
data class Author(
val name: String,
Expand Down