Merge pull request #532 from nagisa77/codex/add-comment-pinning-feature

feat: support comment pinning
This commit is contained in:
Tim
2025-08-13 16:31:12 +08:00
committed by GitHub
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;
}