API: support '/orgs/:org/repos' (#2047)

* API: support '/orgs/:org/repos'
This commit is contained in:
Aaron Walker 2017-07-13 04:14:15 -07:00 committed by Kim "BKC" Carlbäcker
parent f011d6d4d7
commit 6a3c03762a
4 changed files with 57 additions and 1 deletions

View file

@ -187,6 +187,22 @@
}
}
},
"/orgs/{org}/repos": {
"get": {
"produces": [
"application/json"
],
"operationId": "orgListRepos",
"responses": {
"200": {
"$ref": "#/responses/RepositoryList"
},
"500": {
"$ref": "#/responses/error"
}
}
}
},
"/repos/search": {
"get": {
"produces": [
@ -1357,4 +1373,4 @@
}
}
}
}
}