feat: allow post authors to pin comments

This commit is contained in:
Tim
2025-08-13 16:30:48 +08:00
parent a3aec1133b
commit 0edbeabac2
9 changed files with 165 additions and 11 deletions

View File

@@ -13,6 +13,7 @@ public class CommentDto {
private Long id;
private String content;
private LocalDateTime createdAt;
private LocalDateTime pinnedAt;
private AuthorDto author;
private List<CommentDto> replies;
private List<ReactionDto> reactions;