aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_create.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-10-01 23:31:16 +0200
committerMichael Muré <batolettre@gmail.com>2018-10-01 23:31:16 +0200
commit6ea6f3614e46a62f4a37c6afb488547a3d548191 (patch)
tree8a32431ce90dd8b169aac858b99a761b8f76c95f /bug/op_create.go
parentf026f61aaaa7b9e579e99f171f7fefb38c4c6181 (diff)
downloadgit-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_create.go')
-rw-r--r--bug/op_create.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/bug/op_create.go b/bug/op_create.go
index 2ac85ee1..45387d19 100644
--- a/bug/op_create.go
+++ b/bug/op_create.go
@@ -96,19 +96,19 @@ type CreateTimelineItem struct {
}
// Convenience function to apply the operation
-func Create(author Person, unixTime int64, title, message string) (*Bug, error) {
+func Create(author Person, unixTime int64, title, message string) (*Bug, *CreateOperation, error) {
return CreateWithFiles(author, unixTime, title, message, nil)
}
-func CreateWithFiles(author Person, unixTime int64, title, message string, files []git.Hash) (*Bug, error) {
+func CreateWithFiles(author Person, unixTime int64, title, message string, files []git.Hash) (*Bug, *CreateOperation, error) {
newBug := NewBug()
createOp := NewCreateOp(author, unixTime, title, message, files)
if err := createOp.Validate(); err != nil {
- return nil, err
+ return nil, createOp, err
}
newBug.Append(createOp)
- return newBug, nil
+ return newBug, createOp, nil
}