mirror of
https://github.com/go-gitea/gitea
synced 2024-12-30 17:15:58 +01:00
fix #1227
This commit is contained in:
parent
c44e1c7ca9
commit
4cd892c99f
@ -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 New Issue
Block a user