upvotes
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is passing

This commit is contained in:
2024-04-23 19:13:48 +03:00
parent a1df10c37e
commit ed403c2c72
11 changed files with 147 additions and 17 deletions

View File

@@ -40,6 +40,12 @@ type Feedback struct {
// Enum: [feature feedback support]
Type string `json:"type,omitempty"`
// upvoted
Upvoted bool `json:"upvoted,omitempty"`
// upvotes
Upvotes int64 `json:"upvotes,omitempty"`
// to have more context about the user
UserID string `json:"user_id,omitempty"`
}