aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_set_title.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-06-23 18:32:22 +0200
committerMichael Muré <batolettre@gmail.com>2019-06-23 18:32:22 +0200
commit5bae915b53ed2bb4f222db2fdc73852099b96fd2 (patch)
tree1b89569754b363eba94b075d6fc9137b7e772d91 /bug/op_set_title.go
parentfb964bd3e99546df6edb5a4c913d0960dabe9826 (diff)
downloadgit-bug-5bae915b53ed2bb4f222db2fdc73852099b96fd2.tar.gz
minor cleanup
Diffstat (limited to 'bug/op_set_title.go')
-rw-r--r--bug/op_set_title.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/bug/op_set_title.go b/bug/op_set_title.go
index dce06014..31113943 100644
--- a/bug/op_set_title.go
+++ b/bug/op_set_title.go
@@ -150,6 +150,9 @@ func (s SetTitleTimelineItem) Hash() git.Hash {
return s.hash
}
+// Sign post method for gqlgen
+func (s *SetTitleTimelineItem) IsAuthored() {}
+
// Convenience function to apply the operation
func SetTitle(b Interface, author identity.Interface, unixTime int64, title string) (*SetTitleOperation, error) {
it := NewOperationIterator(b)
@@ -178,6 +181,3 @@ func SetTitle(b Interface, author identity.Interface, unixTime int64, title stri
b.Append(setTitleOp)
return setTitleOp, nil
}
-
-// Sign post method for gqlgen
-func (item *SetTitleTimelineItem) IsAuthored() {}