mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Restricted users only see repos in orgs which their team was assigned to (#28025)
--- *Sponsored by Kithara Software GmbH*
This commit is contained in:
		| @@ -652,12 +652,12 @@ func AccessibleRepositoryCondition(user *user_model.User, unitType unit.Type) bu | ||||
| 				userOrgTeamUnitRepoCond("`repository`.id", user.ID, unitType), | ||||
| 			) | ||||
| 		} | ||||
| 		cond = cond.Or( | ||||
| 			// 4. Repositories that we directly own | ||||
| 			builder.Eq{"`repository`.owner_id": user.ID}, | ||||
| 		// 4. Repositories that we directly own | ||||
| 		cond = cond.Or(builder.Eq{"`repository`.owner_id": user.ID}) | ||||
| 		if !user.IsRestricted { | ||||
| 			// 5. Be able to see all public repos in private organizations that we are an org_user of | ||||
| 			userOrgPublicRepoCond(user.ID), | ||||
| 		) | ||||
| 			cond = cond.Or(userOrgPublicRepoCond(user.ID)) | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	return cond | ||||
|   | ||||
		Reference in New Issue
	
	Block a user