diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-15 02:50:09 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-24 21:26:34 +0200 |
commit | 6451dd2928d7299dbcc3c34b3e6b8a8050f4c796 (patch) | |
tree | 37350fe4003addabf0764c7a7310baa98a636bb4 /bridge/github/export.go | |
parent | 2f620e65b8edeb761a161cea0dda11eb1cdf8fec (diff) | |
download | git-bug-6451dd2928d7299dbcc3c34b3e6b8a8050f4c796.tar.gz git-bug-6451dd2928d7299dbcc3c34b3e6b8a8050f4c796.zip |
[cache] BugCache: Add set metadata methods
[bridge/github] fix add/remove mutation requests
[bridge/github] iterator: fix typo
Diffstat (limited to 'bridge/github/export.go')
-rw-r--r-- | bridge/github/export.go | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/bridge/github/export.go b/bridge/github/export.go index 8fcbd9e85..37207df70 100644 --- a/bridge/github/export.go +++ b/bridge/github/export.go @@ -10,15 +10,11 @@ import ( "net/http" "time" + "github.com/shurcooL/githubv4" + "github.com/MichaelMure/git-bug/bridge/core" "github.com/MichaelMure/git-bug/bug" "github.com/MichaelMure/git-bug/cache" - "github.com/shurcooL/githubv4" -) - -const ( - keyGithubIdExport = "github-id" - keyGithubUrlExport = "github-url" ) // githubImporter implement the Importer interface @@ -449,7 +445,7 @@ func (ge *githubExporter) updateGithubIssueLabels(labelableID string, added, rem return fmt.Errorf("getting added labels ids: %v", err) } - m := &updateIssueMutation{} + m := &addLabelsToLabelableMutation{} inputAdd := &githubv4.AddLabelsToLabelableInput{ LabelableID: labelableID, LabelIDs: addedIDs, @@ -465,13 +461,14 @@ func (ge *githubExporter) updateGithubIssueLabels(labelableID string, added, rem return fmt.Errorf("getting added labels ids: %v", err) } + m2 := &removeLabelsFromLabelableMutation{} inputRemove := &githubv4.RemoveLabelsFromLabelableInput{ LabelableID: labelableID, LabelIDs: removedIDs, } // remove label labels - if err := ge.gc.Mutate(context.TODO(), m, inputRemove, nil); err != nil { + if err := ge.gc.Mutate(context.TODO(), m2, inputRemove, nil); err != nil { return err } |