mirror of
https://github.com/go-gitea/gitea
synced 2024-12-22 08:34:25 +01:00
fix #1227
This commit is contained in:
parent
c44e1c7ca9
commit
4cd892c99f
1 changed files with 5 additions and 1 deletions
|
@ -464,7 +464,11 @@ func runWeb(ctx *cli.Context) {
|
|||
}, ignSignIn, middleware.RepoAssignment(true))
|
||||
|
||||
m.Group("/:username", func() {
|
||||
m.Get("/:reponame", ignSignIn, middleware.RepoAssignment(true, true), middleware.RepoRef(), repo.Home)
|
||||
m.Group("/:reponame", func() {
|
||||
m.Get("", repo.Home)
|
||||
m.Get(".git", repo.Home)
|
||||
}, ignSignIn, middleware.RepoAssignment(true, true), middleware.RepoRef())
|
||||
|
||||
m.Any("/:reponame/*", ignSignInAndCsrf, repo.Http)
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue