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

@@ -38,4 +38,7 @@ public class Comment {
@JoinColumn(name = "parent_id")
private Comment parent;
@Column
private LocalDateTime pinnedAt;
}