Fix org visibility bug when git cloning (#6743)
* fix org visibility bug * fix permission check * add integration tests * fix tests * change test user name for easier maintainance and fix test * fix test git repo name
This commit is contained in:
parent
e8f4c7733a
commit
199faadea3
87 changed files with 2865 additions and 14 deletions
|
@ -236,12 +236,6 @@ func repoAssignment(ctx *Context, repo *models.Repository) {
|
|||
return
|
||||
}
|
||||
|
||||
if repo.Owner.IsOrganization() {
|
||||
if !models.HasOrgVisible(repo.Owner, ctx.User) {
|
||||
ctx.NotFound("HasOrgVisible", nil)
|
||||
return
|
||||
}
|
||||
}
|
||||
ctx.Repo.Permission, err = models.GetUserRepoPermission(repo, ctx.User)
|
||||
if err != nil {
|
||||
ctx.ServerError("GetUserRepoPermission", err)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue