summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorAaron Walker <awwalker3@gmail.com>2017-07-13 04:14:15 -0700
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2017-07-13 13:14:15 +0200
commit6a3c03762a37f593ec8101c2005836ca44683e1d (patch)
treee0d47eef90cceef4563de05f480c0abcf707c4e2 /public
parentf011d6d4d7a53a99c9d213f686412513fe78d6a7 (diff)
downloadgitea-6a3c03762a37f593ec8101c2005836ca44683e1d.tar.gz
gitea-6a3c03762a37f593ec8101c2005836ca44683e1d.zip
API: support '/orgs/:org/repos' (#2047)
* API: support '/orgs/:org/repos'
Diffstat (limited to 'public')
-rw-r--r--public/swagger.v1.json18
1 files changed, 17 insertions, 1 deletions
diff --git a/public/swagger.v1.json b/public/swagger.v1.json
index 68f8227933..3ce534d44f 100644
--- a/public/swagger.v1.json
+++ b/public/swagger.v1.json
@@ -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 @@
}
}
}
-} \ No newline at end of file
+}