diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-03-31 22:32:35 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-04-04 00:37:57 +0200 |
commit | 2a5fbc4dc988d2eea76fe5e844ccf6425f9386ee (patch) | |
tree | 8e5125a64ff3d54fa304ae758ddbbcc427b368af /bug/op_create_test.go | |
parent | 5b0a92dea43f467f31a65a6f02e937d285cb0a71 (diff) | |
download | git-bug-2a5fbc4dc988d2eea76fe5e844ccf6425f9386ee.tar.gz |
Expose actors and participants in snapshot and bug excerpt
Append operations authors to each list on Apply() call
Expose actors and participants in graphql
Add actor/participant query filter and documentation
Diffstat (limited to 'bug/op_create_test.go')
-rw-r--r-- | bug/op_create_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bug/op_create_test.go b/bug/op_create_test.go index aa1d8c10..2a88f256 100644 --- a/bug/op_create_test.go +++ b/bug/op_create_test.go @@ -35,8 +35,10 @@ func TestCreate(t *testing.T) { Comments: []Comment{ comment, }, - Author: rene, - CreatedAt: create.Time(), + Author: rene, + Participants: []identity.Interface{rene}, + Actors: []identity.Interface{rene}, + CreatedAt: create.Time(), Timeline: []TimelineItem{ &CreateTimelineItem{ CommentTimelineItem: NewCommentTimelineItem(hash, comment), |