We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d3d967 commit f029b9aCopy full SHA for f029b9a
routers/api/v1/repo/migrate.go
@@ -52,6 +52,8 @@ func Migrate(ctx *context.APIContext) {
52
// "$ref": "#/responses/Repository"
53
// "403":
54
// "$ref": "#/responses/forbidden"
55
+ // "409":
56
+ // description: The repository with the same name already exists.
57
// "422":
58
// "$ref": "#/responses/validationError"
59
templates/swagger/v1_json.tmpl
@@ -2222,6 +2222,9 @@
2222
"403": {
2223
"$ref": "#/responses/forbidden"
2224
},
2225
+ "409": {
2226
+ "description": "The repository with the same name already exists."
2227
+ },
2228
"422": {
2229
"$ref": "#/responses/validationError"
2230
}
0 commit comments