summaryrefslogtreecommitdiffstats
path: root/modules/structs
diff options
context:
space:
mode:
authorpuni9869 <80308335+puni9869@users.noreply.github.com>2023-07-20 22:58:38 +0530
committerGitHub <noreply@github.com>2023-07-20 12:28:38 -0500
commitd12ba978a70fab41aac47c2e16a48d0d8f82a17e (patch)
tree7785b35d2c662aaf9a318d7269bd4eb79c2ed833 /modules/structs
parent2e128dd1fc4ee55cd6a93795a010d9f7e98ed5cd (diff)
downloadgitea-d12ba978a70fab41aac47c2e16a48d0d8f82a17e.tar.gz
gitea-d12ba978a70fab41aac47c2e16a48d0d8f82a17e.zip
Adding remaining enum for migration repo model type. (#26021)
Diffstat (limited to 'modules/structs')
-rw-r--r--modules/structs/repo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/structs/repo.go b/modules/structs/repo.go
index 94992de72e..af439ad730 100644
--- a/modules/structs/repo.go
+++ b/modules/structs/repo.go
@@ -327,7 +327,7 @@ type MigrateRepoOptions struct {
// required: true
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"`
AuthUsername string `json:"auth_username"`
AuthPassword string `json:"auth_password"`