summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--public/swagger.v1.json6
-rw-r--r--routers/api/v1/org/org.go1
-rw-r--r--routers/api/v1/user/watch.go1
3 files changed, 6 insertions, 2 deletions
diff --git a/public/swagger.v1.json b/public/swagger.v1.json
index 6595d96f00..2c263ef1f7 100644
--- a/public/swagger.v1.json
+++ b/public/swagger.v1.json
@@ -5005,7 +5005,8 @@
"type": "string",
"description": "username of user",
"name": "username",
- "in": "path"
+ "in": "path",
+ "required": true
}
],
"responses": {
@@ -5279,7 +5280,8 @@
"type": "string",
"description": "username of the user",
"name": "username",
- "in": "path"
+ "in": "path",
+ "required": true
}
],
"responses": {
diff --git a/routers/api/v1/org/org.go b/routers/api/v1/org/org.go
index c24a4aeb10..29d45d2f2e 100644
--- a/routers/api/v1/org/org.go
+++ b/routers/api/v1/org/org.go
@@ -51,6 +51,7 @@ func ListUserOrgs(ctx *context.APIContext) {
// in: path
// description: username of user
// type: string
+ // required: true
// responses:
// "200":
// "$ref": "#/responses/OrganizationList"
diff --git a/routers/api/v1/user/watch.go b/routers/api/v1/user/watch.go
index af7b9b4cca..2971bf6869 100644
--- a/routers/api/v1/user/watch.go
+++ b/routers/api/v1/user/watch.go
@@ -43,6 +43,7 @@ func GetWatchedRepos(ctx *context.APIContext) {
// type: string
// in: path
// description: username of the user
+ // required: true
// responses:
// "200":
// "$ref": "#/responses/RepositoryList"