mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Default empty merger list to those with write permissions (#12535)
Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
		@@ -98,9 +98,10 @@ func (protectBranch *ProtectedBranch) CanUserPush(userID int64) bool {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// IsUserMergeWhitelisted checks if some user is whitelisted to merge to this branch
 | 
			
		||||
func (protectBranch *ProtectedBranch) IsUserMergeWhitelisted(userID int64) bool {
 | 
			
		||||
func (protectBranch *ProtectedBranch) IsUserMergeWhitelisted(userID int64, permissionInRepo Permission) bool {
 | 
			
		||||
	if !protectBranch.EnableMergeWhitelist {
 | 
			
		||||
		return true
 | 
			
		||||
		// Then we need to fall back on whether the user has write permission
 | 
			
		||||
		return permissionInRepo.CanWrite(UnitTypeCode)
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if base.Int64sContains(protectBranch.MergeWhitelistUserIDs, userID) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user