mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	Backport: Hide given credentials for migrated repos. (#9098)
CloneAddr was being used as OriginalURL. Now passing OriginalURL through from the form and saving it.
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,
 | 
			
		||||
 
 | 
			
		||||
@@ -291,6 +291,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