1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

fix read access team visibility of private repo

This commit is contained in:
Unknwon
2015-03-16 04:52:11 -04:00
parent 588f3215c6
commit fc6db829b2
4 changed files with 40 additions and 11 deletions

View File

@@ -356,7 +356,7 @@ func Action(ctx *middleware.Context) {
ctx.Repo.Repository.Description = ctx.Query("desc")
ctx.Repo.Repository.Website = ctx.Query("site")
err = models.UpdateRepository(ctx.Repo.Repository)
err = models.UpdateRepository(ctx.Repo.Repository, false)
}
if err != nil {