Skip to content

Commit

Permalink
fix: POST /repos/:owner/:repo/issues/:nr/labels now accepts "labels…
Browse files Browse the repository at this point in the history
…" namespace
  • Loading branch information
gr2m committed Nov 10, 2018
1 parent 07f3dba commit 9bc917a
Show file tree
Hide file tree
Showing 4 changed files with 139 additions and 123 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,13 @@
"scope": "https://api.github.com:443",
"method": "post",
"path": "/repos/octokit-fixture-org/add-labels-to-issue/issues/1/labels",
"body": [
"Foo",
"bAr",
"baZ"
],
"body": {
"labels": [
"Foo",
"bAr",
"baZ"
]
},
"status": 200,
"response": [
{
Expand Down Expand Up @@ -125,7 +127,7 @@
"accept": "application/vnd.github.v3+json",
"content-type": "application/json; charset=utf-8",
"authorization": "token 0000000000000000000000000000000000000001",
"content-length": 19,
"content-length": 30,
"host": "api.github.com"
},
"headers": {
Expand Down
Loading

0 comments on commit 9bc917a

Please sign in to comment.