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_add_comment.go | |
parent | fb964bd3e99546df6edb5a4c913d0960dabe9826 (diff) | |
download | git-bug-5bae915b53ed2bb4f222db2fdc73852099b96fd2.tar.gz |
minor cleanup
Diffstat (limited to 'bug/op_add_comment.go')
-rw-r--r-- | bug/op_add_comment.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bug/op_add_comment.go b/bug/op_add_comment.go index 59ea08e0..095b7f43 100644 --- a/bug/op_add_comment.go +++ b/bug/op_add_comment.go @@ -136,6 +136,9 @@ type AddCommentTimelineItem struct { CommentTimelineItem } +// Sign post method for gqlgen +func (a *AddCommentTimelineItem) IsAuthored() {} + // Convenience function to apply the operation func AddComment(b Interface, author identity.Interface, unixTime int64, message string) (*AddCommentOperation, error) { return AddCommentWithFiles(b, author, unixTime, message, nil) @@ -149,6 +152,3 @@ func AddCommentWithFiles(b Interface, author identity.Interface, unixTime int64, b.Append(addCommentOp) return addCommentOp, nil } - -// Sign post method for gqlgen -func (item *AddCommentTimelineItem) IsAuthored() {} |