mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	show user who created the repository instead of the organization in action feed (#5948)
This commit is contained in:
		@@ -1359,14 +1359,14 @@ func createRepository(e *xorm.Session, doer, u *User, repo *Repository) (err err
 | 
			
		||||
			return fmt.Errorf("watchRepo: %v", err)
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	if err = newRepoAction(e, u, repo); err != nil {
 | 
			
		||||
	if err = newRepoAction(e, doer, repo); err != nil {
 | 
			
		||||
		return fmt.Errorf("newRepoAction: %v", err)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return nil
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// CreateRepository creates a repository for the user/organization u.
 | 
			
		||||
// CreateRepository creates a repository for the user/organization.
 | 
			
		||||
func CreateRepository(doer, u *User, opts CreateRepoOptions) (_ *Repository, err error) {
 | 
			
		||||
	if !doer.IsAdmin && !u.CanCreateRepo() {
 | 
			
		||||
		return nil, ErrReachLimitOfRepo{u.MaxRepoCreation}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user