Remove unneeded database loads (#814)

Remove unnecessary calls to repo.GetOwner() in context handlers
tokarchuk/v1.17
Ethan Koenig 8 years ago committed by Lunny Xiao
parent d7d094bd8a
commit 73d05a51e3
  1. 4
      modules/context/repo.go
  2. 4
      routers/api/v1/api.go

@ -185,10 +185,8 @@ func RepoAssignment(args ...bool) macaron.Handler {
ctx.Handle(500, "GetRepositoryByName", err)
}
return
} else if err = repo.GetOwner(); err != nil {
ctx.Handle(500, "GetOwner", err)
return
}
repo.Owner = owner
// Admin has super access.
if ctx.IsSigned && ctx.User.IsAdmin {

@ -57,10 +57,8 @@ func repoAssignment() macaron.Handler {
ctx.Error(500, "GetRepositoryByName", err)
}
return
} else if err = repo.GetOwner(); err != nil {
ctx.Error(500, "GetOwner", err)
return
}
repo.Owner = owner
if ctx.IsSigned && ctx.User.IsAdmin {
ctx.Repo.AccessMode = models.AccessModeOwner

Loading…
Cancel
Save