ui update, repo-assignment panic bug fix

This commit is contained in:
FuXiaoHei 2014-03-17 13:12:28 +08:00
parent cc3cbf8cbe
commit c101471bdf
5 changed files with 7 additions and 5 deletions

View file

@ -24,7 +24,6 @@ func RepoAssignment(redirect bool) martini.Handler {
// get repository owner
ctx.Repo.IsOwner = ctx.IsSigned && ctx.User.LowerName == params["username"]
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
if !ctx.Repo.IsOwner {
user, err = models.GetUserByName(params["username"])
@ -70,5 +69,6 @@ func RepoAssignment(redirect bool) martini.Handler {
ctx.Data["Owner"] = user
ctx.Data["Title"] = user.Name + "/" + repo.Name
ctx.Data["RepositoryLink"] = ctx.Data["Title"]
ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner
}
}