From ba3281dc9918fa49f10c2a166b5b631a931d2d51 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Wed, 18 Jul 2018 00:16:06 +0200 Subject: all operations now have an author and a timestamp --- commands/close.go | 7 ++++++- commands/open.go | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) (limited to 'commands') diff --git a/commands/close.go b/commands/close.go index 6e668a508..15f509269 100644 --- a/commands/close.go +++ b/commands/close.go @@ -23,7 +23,12 @@ func runCloseBug(repo repository.Repo, args []string) error { return err } - op := operations.NewSetStatusOp(bug.ClosedStatus) + author, err := bug.GetUser(repo) + if err != nil { + return err + } + + op := operations.NewSetStatusOp(author, bug.ClosedStatus) b.Append(op) diff --git a/commands/open.go b/commands/open.go index 91704da3f..564169316 100644 --- a/commands/open.go +++ b/commands/open.go @@ -23,7 +23,12 @@ func runOpenBug(repo repository.Repo, args []string) error { return err } - op := operations.NewSetStatusOp(bug.OpenStatus) + author, err := bug.GetUser(repo) + if err != nil { + return err + } + + op := operations.NewSetStatusOp(author, bug.OpenStatus) b.Append(op) -- cgit v1.2.3