aboutsummaryrefslogtreecommitdiffstats
path: root/graphql
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2019-08-13 16:02:13 +0200
committerMichael Muré <batolettre@gmail.com>2019-08-13 16:23:05 +0200
commitc809d37152ea87a66fc281730042dcb4299a8263 (patch)
treec92867a5b4bcc1c923cc1c78689023868bee10be /graphql
parent99b5c58d43137bd9f6503788a55484327b0c531f (diff)
downloadgit-bug-c809d37152ea87a66fc281730042dcb4299a8263.tar.gz
more hash-->id fixes
Diffstat (limited to 'graphql')
-rw-r--r--graphql/resolvers/operations.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphql/resolvers/operations.go b/graphql/resolvers/operations.go
index 3080c98b..ec803c1f 100644
--- a/graphql/resolvers/operations.go
+++ b/graphql/resolvers/operations.go
@@ -45,7 +45,7 @@ func (editCommentOperationResolver) ID(ctx context.Context, obj *bug.EditComment
}
func (editCommentOperationResolver) Target(ctx context.Context, obj *bug.EditCommentOperation) (string, error) {
- panic("implement me")
+ return obj.Target.String(), nil
}
func (editCommentOperationResolver) Date(ctx context.Context, obj *bug.EditCommentOperation) (*time.Time, error) {