mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 04:14:01 +01:00 
			
		
		
		
	Check Push permissions on IsUserAllowedToUpdate (#11448)
This commit is contained in:
		
							parent
							
								
									dcb0cf7470
								
							
						
					
					
						commit
						84bcb3451a
					
				@ -59,6 +59,17 @@ func IsUserAllowedToUpdate(pull *models.PullRequest, user *models.User) (bool, e
 | 
				
			|||||||
		HeadBranch: pull.BaseBranch,
 | 
							HeadBranch: pull.BaseBranch,
 | 
				
			||||||
		BaseBranch: pull.HeadBranch,
 | 
							BaseBranch: pull.HeadBranch,
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						err = pr.LoadProtectedBranch()
 | 
				
			||||||
 | 
						if err != nil {
 | 
				
			||||||
 | 
							return false, err
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						// Update function need push permission
 | 
				
			||||||
 | 
						if pr.ProtectedBranch != nil && !pr.ProtectedBranch.CanUserPush(user.ID) {
 | 
				
			||||||
 | 
							return false, nil
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return IsUserAllowedToMerge(pr, headRepoPerm, user)
 | 
						return IsUserAllowedToMerge(pr, headRepoPerm, user)
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user