aboutsummaryrefslogtreecommitdiffstats
path: root/bug/snapshot.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/snapshot.go')
-rw-r--r--bug/snapshot.go10
1 files changed, 6 insertions, 4 deletions
diff --git a/bug/snapshot.go b/bug/snapshot.go
index 5058b3f7..9001d2c7 100644
--- a/bug/snapshot.go
+++ b/bug/snapshot.go
@@ -10,10 +10,12 @@ import (
type Snapshot struct {
id string
- Status Status `json:"status"`
- Title string `json:"title"`
- Comments []Comment `json:"comments"`
- Labels []Label `json:"labels"`
+ Status Status
+ Title string
+ Comments []Comment
+ Labels []Label
+ Author Person
+ CreatedAt time.Time
Operations []Operation
}