diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-23 19:20:10 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-30 15:33:27 +0200 |
commit | 570ae5f75e034523a1d7d94a04febe944d36399b (patch) | |
tree | 65e6a9ec1db7b0e1a48e4838fe73d06de610e0cd /bridge/github/export_mutation.go | |
parent | 31eebdf9da8cd0f6afd7999175fb53cc135a1833 (diff) | |
download | git-bug-570ae5f75e034523a1d7d94a04febe944d36399b.tar.gz |
[bug] add snapshot.GetCreateMetadata method
[bug] add snapshot.HasParticipant(id string)
[bug] add snapshot.HasAnyParticipant(ids ...string)
[bug] add snapshot.HasActor(id string)
[bug] add snapshot.HasAnyActor(ids ...string)
[bridge/github] improve comments
[bridge/github] exporter tests: register deleteRepository in cleaner
[bridge/github] tests rebase
Diffstat (limited to 'bridge/github/export_mutation.go')
-rw-r--r-- | bridge/github/export_mutation.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/github/export_mutation.go b/bridge/github/export_mutation.go index 95d4e6a9..cf77f344 100644 --- a/bridge/github/export_mutation.go +++ b/bridge/github/export_mutation.go @@ -1,7 +1,5 @@ package github -import "github.com/shurcooL/githubv4" - type createIssueMutation struct { CreateIssue struct { Issue struct { @@ -56,6 +54,7 @@ type addLabelsToLabelableMutation struct { } `graphql:"addLabelsToLabelable(input:$input)"` } +/** type createLabelMutation struct { CreateLabel struct { Label struct { @@ -72,3 +71,4 @@ type createLabelInput struct { ClientMutationID *githubv4.String `json:"clientMutationId,omitempty"` } +*/ |