Fix incorrect MergeWhitelistTeamIDs check in CanUserMerge function (#4519) (#4526)

This commit is contained in:
SagePtr
2018-07-27 22:11:53 +03:00
committed by Lauris BH
parent dae065ea68
commit 5a7830e0e8
+1 -1
View File
@@ -74,7 +74,7 @@ func (protectBranch *ProtectedBranch) CanUserMerge(userID int64) bool {
return true
}
if len(protectBranch.WhitelistTeamIDs) == 0 {
if len(protectBranch.MergeWhitelistTeamIDs) == 0 {
return false
}