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 e9f9601 commit b1ed85bCopy full SHA for b1ed85b
routers/api/v1/repo/migrate.go
@@ -48,6 +48,8 @@ func Migrate(ctx *context.APIContext) {
48
// "$ref": "#/responses/Repository"
49
// "403":
50
// "$ref": "#/responses/forbidden"
51
+ // "409":
52
+ // description: The repository with the same name already exists.
53
// "422":
54
// "$ref": "#/responses/validationError"
55
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