aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2021-02-20 14:37:06 +0100
committerMichael Muré <batolettre@gmail.com>2021-02-20 14:37:06 +0100
commitbd09541752ef4db008500d238762ebe7f2f7be39 (patch)
tree792dc112d2bc4a8815fc5c146476a5a30075997c
parent45e540c178533ef9aab01b1c3e782bc63061e313 (diff)
downloadgit-bug-bd09541752ef4db008500d238762ebe7f2f7be39.tar.gz
entity: no sign-post needed
-rw-r--r--bug/op_add_comment.go3
-rw-r--r--bug/op_create.go3
-rw-r--r--bug/op_edit_comment.go3
-rw-r--r--bug/op_label_change.go3
-rw-r--r--bug/op_noop.go3
-rw-r--r--bug/op_set_metadata.go3
-rw-r--r--bug/op_set_status.go3
-rw-r--r--bug/op_set_title.go3
-rw-r--r--bug/operation.go3
9 files changed, 0 insertions, 27 deletions
diff --git a/bug/op_add_comment.go b/bug/op_add_comment.go
index fd00860b..4cba200f 100644
--- a/bug/op_add_comment.go
+++ b/bug/op_add_comment.go
@@ -21,9 +21,6 @@ type AddCommentOperation struct {
Files []repository.Hash `json:"files"`
}
-// Sign-post method for gqlgen
-func (op *AddCommentOperation) IsOperation() {}
-
func (op *AddCommentOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/op_create.go b/bug/op_create.go
index 2423e571..e3e38ade 100644
--- a/bug/op_create.go
+++ b/bug/op_create.go
@@ -27,9 +27,6 @@ type CreateOperation struct {
Files []repository.Hash `json:"files"`
}
-// Sign-post method for gqlgen
-func (op *CreateOperation) IsOperation() {}
-
func (op *CreateOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/op_edit_comment.go b/bug/op_edit_comment.go
index e08aeaad..653ab71e 100644
--- a/bug/op_edit_comment.go
+++ b/bug/op_edit_comment.go
@@ -24,9 +24,6 @@ type EditCommentOperation struct {
Files []repository.Hash `json:"files"`
}
-// Sign-post method for gqlgen
-func (op *EditCommentOperation) IsOperation() {}
-
func (op *EditCommentOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/op_label_change.go b/bug/op_label_change.go
index d682fe54..8b0e5ec8 100644
--- a/bug/op_label_change.go
+++ b/bug/op_label_change.go
@@ -21,9 +21,6 @@ type LabelChangeOperation struct {
Removed []Label `json:"removed"`
}
-// Sign-post method for gqlgen
-func (op *LabelChangeOperation) IsOperation() {}
-
func (op *LabelChangeOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/op_noop.go b/bug/op_noop.go
index 81efdb25..1b11e694 100644
--- a/bug/op_noop.go
+++ b/bug/op_noop.go
@@ -16,9 +16,6 @@ type NoOpOperation struct {
OpBase
}
-// Sign-post method for gqlgen
-func (op *NoOpOperation) IsOperation() {}
-
func (op *NoOpOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/op_set_metadata.go b/bug/op_set_metadata.go
index 4e596728..ca19a838 100644
--- a/bug/op_set_metadata.go
+++ b/bug/op_set_metadata.go
@@ -17,9 +17,6 @@ type SetMetadataOperation struct {
NewMetadata map[string]string `json:"new_metadata"`
}
-// Sign-post method for gqlgen
-func (op *SetMetadataOperation) IsOperation() {}
-
func (op *SetMetadataOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/op_set_status.go b/bug/op_set_status.go
index ca8c434a..e22ded54 100644
--- a/bug/op_set_status.go
+++ b/bug/op_set_status.go
@@ -18,9 +18,6 @@ type SetStatusOperation struct {
Status Status `json:"status"`
}
-// Sign-post method for gqlgen
-func (op *SetStatusOperation) IsOperation() {}
-
func (op *SetStatusOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/op_set_title.go b/bug/op_set_title.go
index 899b4fa3..c6a26746 100644
--- a/bug/op_set_title.go
+++ b/bug/op_set_title.go
@@ -21,9 +21,6 @@ type SetTitleOperation struct {
Was string `json:"was"`
}
-// Sign-post method for gqlgen
-func (op *SetTitleOperation) IsOperation() {}
-
func (op *SetTitleOperation) Id() entity.Id {
return idOperation(op, &op.OpBase)
}
diff --git a/bug/operation.go b/bug/operation.go
index 71a5c15d..0423c229 100644
--- a/bug/operation.go
+++ b/bug/operation.go
@@ -49,9 +49,6 @@ type Operation interface {
AllMetadata() map[string]string
setExtraMetadataImmutable(key string, value string)
-
- // sign-post method for gqlgen
- IsOperation()
}
func idOperation(op Operation, base *OpBase) entity.Id {