From 8e4f521381a8389d8da268f01b68bcf14151c7fd Mon Sep 17 00:00:00 2001 From: Giteabot Date: Fri, 21 Jul 2023 02:54:43 -0400 Subject: [PATCH] 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) --- modules/structs/repo.go | 2 +- templates/swagger/v1_json.tmpl | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/modules/structs/repo.go b/modules/structs/repo.go index 3b43f74c79..159ba76cec 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"` diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 1c708835b6..f8994592d7 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -19778,7 +19778,11 @@ "git", "github", "gitea", - "gitlab" + "gitlab", + "gogs", + "onedev", + "gitbucket", + "codebase" ], "x-go-name": "Service" },