diff options
author | Michael Muré <batolettre@gmail.com> | 2019-06-23 18:32:22 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-06-23 18:32:22 +0200 |
commit | 5bae915b53ed2bb4f222db2fdc73852099b96fd2 (patch) | |
tree | 1b89569754b363eba94b075d6fc9137b7e772d91 /bug/op_create.go | |
parent | fb964bd3e99546df6edb5a4c913d0960dabe9826 (diff) | |
download | git-bug-5bae915b53ed2bb4f222db2fdc73852099b96fd2.tar.gz |
minor cleanup
Diffstat (limited to 'bug/op_create.go')
-rw-r--r-- | bug/op_create.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bug/op_create.go b/bug/op_create.go index e0e8154b..e52e6254 100644 --- a/bug/op_create.go +++ b/bug/op_create.go @@ -156,6 +156,9 @@ type CreateTimelineItem struct { CommentTimelineItem } +// Sign post method for gqlgen +func (c *CreateTimelineItem) IsAuthored() {} + // Convenience function to apply the operation func Create(author identity.Interface, unixTime int64, title, message string) (*Bug, *CreateOperation, error) { return CreateWithFiles(author, unixTime, title, message, nil) @@ -173,6 +176,3 @@ func CreateWithFiles(author identity.Interface, unixTime int64, title, message s return newBug, createOp, nil } - -// Sign post method for gqlgen -func (item *CreateTimelineItem) IsAuthored() {} |