diff --git a/routers/api/v1/repo/status.go b/routers/api/v1/repo/status.go index 48edd2291..7d4a2de38 100644 --- a/routers/api/v1/repo/status.go +++ b/routers/api/v1/repo/status.go @@ -41,8 +41,8 @@ func NewCommitStatus(ctx *context.APIContext, form api.CreateStatusOption) { // schema: // "$ref": "#/definitions/CreateStatusOption" // responses: - // "200": - // "$ref": "#/responses/StatusList" + // "201": + // "$ref": "#/responses/Status" sha := ctx.Params("sha") if len(sha) == 0 { ctx.Error(400, "sha not given", nil) diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 7ed43b450..f1789535b 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -5879,8 +5879,8 @@ } ], "responses": { - "200": { - "$ref": "#/responses/StatusList" + "201": { + "$ref": "#/responses/Status" } } }