diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-07 17:41:47 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-07 17:41:47 +0200 |
commit | 03202fed493539c8d1fdcad7254687f951d0ca4a (patch) | |
tree | 17943d170d05d7993469cb469dd175addcb1928c /graphql/resolvers/operations.go | |
parent | 64133ee5ba4b03e2f7f2f2161b1d551a97bd0d80 (diff) | |
download | git-bug-03202fed493539c8d1fdcad7254687f951d0ca4a.tar.gz |
graphql: add missing operation
Diffstat (limited to 'graphql/resolvers/operations.go')
-rw-r--r-- | graphql/resolvers/operations.go | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/graphql/resolvers/operations.go b/graphql/resolvers/operations.go index 88e15d44..c8089ac1 100644 --- a/graphql/resolvers/operations.go +++ b/graphql/resolvers/operations.go @@ -9,15 +9,21 @@ import ( "github.com/MichaelMure/git-bug/graphql/models" ) +type createOperationResolver struct{} + +func (createOperationResolver) Date(ctx context.Context, obj *bug.CreateOperation) (time.Time, error) { + return obj.Time(), nil +} + type addCommentOperationResolver struct{} func (addCommentOperationResolver) Date(ctx context.Context, obj *bug.AddCommentOperation) (time.Time, error) { return obj.Time(), nil } -type createOperationResolver struct{} +type editCommentOperationResolver struct{} -func (createOperationResolver) Date(ctx context.Context, obj *bug.CreateOperation) (time.Time, error) { +func (editCommentOperationResolver) Date(ctx context.Context, obj *bug.EditCommentOperation) (time.Time, error) { return obj.Time(), nil } |