Adding remaining enum for migration repo model type. (#26021) (#26034)

Backport #26021 by @puni9869

Fixes: https://github.com/go-gitea/gitea/issues/26010

Adding remaining enum for migration repo model type.

Co-authored-by: puni9869 <80308335+puni9869@users.noreply.github.com>
(cherry picked from commit 8b002b429d1b3c6762e321b5f0acadf66e3d5233)
This commit is contained in:
Giteabot 2023-07-21 02:54:43 -04:00 committed by Earl Warren
parent 7cc4d211b1
commit 8e4f521381
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00
2 changed files with 6 additions and 2 deletions

View file

@ -327,7 +327,7 @@ type MigrateRepoOptions struct {
// required: true // required: true
RepoName string `json:"repo_name" binding:"Required;AlphaDashDot;MaxSize(100)"` RepoName string `json:"repo_name" binding:"Required;AlphaDashDot;MaxSize(100)"`
// enum: git,github,gitea,gitlab // enum: git,github,gitea,gitlab,gogs,onedev,gitbucket,codebase
Service string `json:"service"` Service string `json:"service"`
AuthUsername string `json:"auth_username"` AuthUsername string `json:"auth_username"`
AuthPassword string `json:"auth_password"` AuthPassword string `json:"auth_password"`

View file

@ -19778,7 +19778,11 @@
"git", "git",
"github", "github",
"gitea", "gitea",
"gitlab" "gitlab",
"gogs",
"onedev",
"gitbucket",
"codebase"
], ],
"x-go-name": "Service" "x-go-name": "Service"
}, },