aboutsummaryrefslogtreecommitdiffstats
path: root/cache/bug_excerpt.go
diff options
context:
space:
mode:
Diffstat (limited to 'cache/bug_excerpt.go')
-rw-r--r--cache/bug_excerpt.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cache/bug_excerpt.go b/cache/bug_excerpt.go
index 426827e6..7a11fa82 100644
--- a/cache/bug_excerpt.go
+++ b/cache/bug_excerpt.go
@@ -20,6 +20,8 @@ type BugExcerpt struct {
Status bug.Status
Author bug.Person
Labels []bug.Label
+
+ CreateMetadata map[string]string
}
func NewBugExcerpt(b bug.Interface, snap *bug.Snapshot) *BugExcerpt {
@@ -32,6 +34,7 @@ func NewBugExcerpt(b bug.Interface, snap *bug.Snapshot) *BugExcerpt {
Status: snap.Status,
Author: snap.Author,
Labels: snap.Labels,
+ CreateMetadata: b.FirstOp().AllMetadata(),
}
}