From c809d37152ea87a66fc281730042dcb4299a8263 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 13 Aug 2019 16:02:13 +0200 Subject: more hash-->id fixes --- graphql/resolvers/operations.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'graphql') 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) { -- cgit