diff options
-rw-r--r-- | modules/context/repo.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go index acfccfcd05..519c3afc07 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -171,11 +171,12 @@ func RedirectToRepo(ctx *Context, redirectRepoID int64) { ) ctx.Redirect(redirectPath) } + // RepoIDAssignment returns an macaron handler which assigns the repo to the context. func RepoIDAssignment() macaron.Handler { return func(ctx *Context) { var ( - err error + err error ) repoID := ctx.ParamsInt64(":repoid") |