diff options
author | James E. Blair <corvus@inaugust.com> | 2019-02-27 19:51:46 -0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-02-28 11:51:46 +0800 |
commit | 48c101affe78396db89caada28f883ef5fac20a6 (patch) | |
tree | 517b4e1f1feb740b8ec92d4b0ad3d0631b3d93d8 /modules/context | |
parent | 525f03306f5b1a14c2856d62c4c6c85e78394a7b (diff) | |
download | gitea-48c101affe78396db89caada28f883ef5fac20a6.tar.gz gitea-48c101affe78396db89caada28f883ef5fac20a6.zip |
Create a repo redirect when transferring ownership (#6210) (#6211)
When transferring ownership of a repo to a different user/org,
create a repo redirect that points to the new location in the same
way that is done when a repo is renamed.
Signed-off-by: James E. Blair <jeblair@redhat.com>
Diffstat (limited to 'modules/context')
-rw-r--r-- | modules/context/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/context/repo.go b/modules/context/repo.go index 07873a3c6c..8f4377b041 100644 --- a/modules/context/repo.go +++ b/modules/context/repo.go @@ -204,7 +204,7 @@ func RedirectToRepo(ctx *Context, redirectRepoID int64) { redirectPath := strings.Replace( ctx.Req.URL.Path, fmt.Sprintf("%s/%s", ownerName, previousRepoName), - fmt.Sprintf("%s/%s", ownerName, repo.Name), + fmt.Sprintf("%s/%s", repo.MustOwnerName(), repo.Name), 1, ) ctx.Redirect(redirectPath) |