aboutsummaryrefslogtreecommitdiffstats
path: root/bug/op_label_change.go
diff options
context:
space:
mode:
Diffstat (limited to 'bug/op_label_change.go')
-rw-r--r--bug/op_label_change.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/bug/op_label_change.go b/bug/op_label_change.go
index c5b3765d..4c019d67 100644
--- a/bug/op_label_change.go
+++ b/bug/op_label_change.go
@@ -174,6 +174,9 @@ func (l LabelChangeTimelineItem) Hash() git.Hash {
return l.hash
}
+// Sign post method for gqlgen
+func (l *LabelChangeTimelineItem) IsAuthored() {}
+
// ChangeLabels is a convenience function to apply the operation
func ChangeLabels(b Interface, author identity.Interface, unixTime int64, add, remove []string) ([]LabelChangeResult, *LabelChangeOperation, error) {
var added, removed []Label
@@ -303,6 +306,3 @@ func (l LabelChangeResult) String() string {
panic(fmt.Sprintf("unknown label change status %v", l.Status))
}
}
-
-// Sign post method for gqlgen
-func (item *LabelChangeTimelineItem) IsAuthored() {}