diff options
Diffstat (limited to 'cache')
-rw-r--r-- | cache/bug_excerpt.go | 3 |
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(), } } |