mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Hide given credentials for migrated repos. (#9097)
CloneAddr was being saved as OriginalURL. Now passing OriginalURL through from the form and saving it in it's place
This commit is contained in:
		| @@ -196,7 +196,7 @@ func CreateMigrateTask(doer, u *User, opts base.MigrateOptions) (*Task, error) { | ||||
| 	repo, err := CreateRepository(doer, u, CreateRepoOptions{ | ||||
| 		Name:        opts.RepoName, | ||||
| 		Description: opts.Description, | ||||
| 		OriginalURL: opts.CloneAddr, | ||||
| 		OriginalURL: opts.OriginalURL, | ||||
| 		IsPrivate:   opts.Private, | ||||
| 		IsMirror:    opts.Mirror, | ||||
| 		Status:      RepositoryBeingMigrated, | ||||
|   | ||||
| @@ -326,6 +326,7 @@ func MigratePost(ctx *context.Context, form auth.MigrateRepoForm) { | ||||
| 	} | ||||
|  | ||||
| 	var opts = migrations.MigrateOptions{ | ||||
| 		OriginalURL:  form.CloneAddr, | ||||
| 		CloneAddr:    remoteAddr, | ||||
| 		RepoName:     form.RepoName, | ||||
| 		Description:  form.Description, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user