diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-01 23:31:16 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-01 23:31:16 +0200 |
commit | 6ea6f3614e46a62f4a37c6afb488547a3d548191 (patch) | |
tree | 8a32431ce90dd8b169aac858b99a761b8f76c95f /bug/op_set_status.go | |
parent | f026f61aaaa7b9e579e99f171f7fefb38c4c6181 (diff) | |
download | git-bug-6ea6f3614e46a62f4a37c6afb488547a3d548191.tar.gz |
bug: in op convenience function, return the new op to be able to set metadata later
Diffstat (limited to 'bug/op_set_status.go')
-rw-r--r-- | bug/op_set_status.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bug/op_set_status.go b/bug/op_set_status.go index e40d349d..62f373ec 100644 --- a/bug/op_set_status.go +++ b/bug/op_set_status.go @@ -72,21 +72,21 @@ func (s SetStatusTimelineItem) Hash() git.Hash { } // Convenience function to apply the operation -func Open(b Interface, author Person, unixTime int64) error { +func Open(b Interface, author Person, unixTime int64) (*SetStatusOperation, error) { op := NewSetStatusOp(author, unixTime, OpenStatus) if err := op.Validate(); err != nil { - return err + return nil, err } b.Append(op) - return nil + return op, nil } // Convenience function to apply the operation -func Close(b Interface, author Person, unixTime int64) error { +func Close(b Interface, author Person, unixTime int64) (*SetStatusOperation, error) { op := NewSetStatusOp(author, unixTime, ClosedStatus) if err := op.Validate(); err != nil { - return err + return nil, err } b.Append(op) - return nil + return op, nil } |