Show reactions to threads

This commit is contained in:
2026-07-28 12:02:33 +02:00
parent f93c2c517a
commit 72e1eb1fda
6 changed files with 175 additions and 4 deletions

View File

@@ -174,4 +174,11 @@ type ReviewComment struct {
Outdated bool
CreatedAt time.Time
URL string
Reactions []ReactionSummary
}
type ReactionSummary struct {
Content string
Count int
ViewerHasReacted bool
}