mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Fixed bug where team with admin privelege type doesn't get any unit attached to the team (#4719)
This commit is contained in:
		
				
					committed by
					
						
						techknowlogick
					
				
			
			
				
	
			
			
			
						parent
						
							05dcfcfc33
						
					
				
				
					commit
					6ca8fbd2f9
				
			@@ -186,7 +186,8 @@ func NewTeamPost(ctx *context.Context, form auth.CreateTeamForm) {
 | 
			
		||||
		Description: form.Description,
 | 
			
		||||
		Authorize:   models.ParseAccessMode(form.Permission),
 | 
			
		||||
	}
 | 
			
		||||
	if t.Authorize < models.AccessModeAdmin {
 | 
			
		||||
 | 
			
		||||
	if t.Authorize < models.AccessModeOwner {
 | 
			
		||||
		var units = make([]*models.TeamUnit, 0, len(form.Units))
 | 
			
		||||
		for _, tp := range form.Units {
 | 
			
		||||
			units = append(units, &models.TeamUnit{
 | 
			
		||||
@@ -275,7 +276,7 @@ func EditTeamPost(ctx *context.Context, form auth.CreateTeamForm) {
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	t.Description = form.Description
 | 
			
		||||
	if t.Authorize < models.AccessModeAdmin {
 | 
			
		||||
	if t.Authorize < models.AccessModeOwner {
 | 
			
		||||
		var units = make([]models.TeamUnit, 0, len(form.Units))
 | 
			
		||||
		for _, tp := range form.Units {
 | 
			
		||||
			units = append(units, models.TeamUnit{
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user