diff options
Diffstat (limited to 'bug/timeline.go')
-rw-r--r-- | bug/timeline.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bug/timeline.go b/bug/timeline.go index f2feafba..b5aa22a9 100644 --- a/bug/timeline.go +++ b/bug/timeline.go @@ -10,6 +10,10 @@ type TimelineItem interface { } type CommentHistoryStep struct { + // The author of the edition, not necessarily the same as the author of the + // original comment + Author Person + // The new message Message string UnixTime Timestamp } |