aboutsummaryrefslogtreecommitdiffstats
path: root/graphql2/resolvers/operations.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-07-29 18:58:42 +0200
committerMichael Muré <batolettre@gmail.com>2018-07-29 18:58:42 +0200
commit8fa0b258ac89781dae269790a4bde09cbcd2f324 (patch)
treeb9bcf0826f5739f128de52123447cede23291c02 /graphql2/resolvers/operations.go
parent6363518c85cbd8247a5f6507b8a1dd3903cfb71d (diff)
downloadgit-bug-8fa0b258ac89781dae269790a4bde09cbcd2f324.tar.gz
cleaning
Diffstat (limited to 'graphql2/resolvers/operations.go')
-rw-r--r--graphql2/resolvers/operations.go54
1 files changed, 0 insertions, 54 deletions
diff --git a/graphql2/resolvers/operations.go b/graphql2/resolvers/operations.go
deleted file mode 100644
index 1279a1b4..00000000
--- a/graphql2/resolvers/operations.go
+++ /dev/null
@@ -1,54 +0,0 @@
-package resolvers
-
-import (
- "context"
- "fmt"
- "github.com/MichaelMure/git-bug/bug"
- "github.com/MichaelMure/git-bug/bug/operations"
- "time"
-)
-
-type addCommentOperationResolver struct{}
-
-func (addCommentOperationResolver) Date(ctx context.Context, obj *operations.AddCommentOperation) (time.Time, error) {
- return obj.Time(), nil
-}
-
-type createOperationResolver struct{}
-
-func (createOperationResolver) Date(ctx context.Context, obj *operations.CreateOperation) (time.Time, error) {
- return obj.Time(), nil
-}
-
-type labelChangeOperation struct{}
-
-func (labelChangeOperation) Date(ctx context.Context, obj *operations.LabelChangeOperation) (time.Time, error) {
- return obj.Time(), nil
-}
-
-type setStatusOperationResolver struct{}
-
-func (setStatusOperationResolver) Date(ctx context.Context, obj *operations.SetStatusOperation) (time.Time, error) {
- return obj.Time(), nil
-}
-
-func (setStatusOperationResolver) Status(ctx context.Context, obj *operations.SetStatusOperation) (Status, error) {
- return convertStatus(obj.Status)
-}
-
-type setTitleOperationResolver struct{}
-
-func (setTitleOperationResolver) Date(ctx context.Context, obj *operations.SetTitleOperation) (time.Time, error) {
- return obj.Time(), nil
-}
-
-func convertStatus(status bug.Status) (Status, error) {
- switch status {
- case bug.OpenStatus:
- return StatusOpen, nil
- case bug.ClosedStatus:
- return StatusClosed, nil
- }
-
- return "", fmt.Errorf("Unknown status")
-}