diff options
author | Morlinest <Morlinest@users.noreply.github.com> | 2017-09-30 06:04:16 +0200 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-09-30 12:04:16 +0800 |
commit | bae9cbce9c8fa02e62260e5bf4744d211c85f690 (patch) | |
tree | 739dec53a9c8035423eb50aa3faab8dd462fbef1 /routers | |
parent | fbaa52a3a8b1047dc653b3d5f1fc62c5757ff032 (diff) | |
download | gitea-bae9cbce9c8fa02e62260e5bf4744d211c85f690.tar.gz gitea-bae9cbce9c8fa02e62260e5bf4744d211c85f690.zip |
Remove redudant CheckUnit calls in router (#2627)
Diffstat (limited to 'routers')
-rw-r--r-- | routers/routes/routes.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/routers/routes/routes.go b/routers/routes/routes.go index c5d6793ff3..8875fa47bf 100644 --- a/routers/routes/routes.go +++ b/routers/routes/routes.go @@ -479,7 +479,7 @@ func RegisterRoutes(m *macaron.Macaron) { // FIXME: should use different URLs but mostly same logic for comments of issue and pull reuqest. // So they can apply their own enable/disable logic on routers. m.Group("/issues", func() { - m.Combo("/new", repo.MustEnableIssues).Get(context.RepoRef(), repo.NewIssue). + m.Combo("/new").Get(context.RepoRef(), repo.NewIssue). Post(bindIgnErr(auth.CreateIssueForm{}), repo.NewIssuePost) m.Group("/:index", func() { @@ -606,12 +606,12 @@ func RegisterRoutes(m *macaron.Macaron) { Post(bindIgnErr(auth.NewWikiForm{}), repo.EditWikiPost) m.Post("/:page/delete", repo.DeleteWikiPagePost) }, reqSignIn, reqRepoWriter) - }, repo.MustEnableWiki, context.RepoRef(), context.CheckUnit(models.UnitTypeWiki)) + }, repo.MustEnableWiki, context.RepoRef()) m.Group("/wiki", func() { m.Get("/raw/*", repo.WikiRaw) m.Get("/*", repo.WikiRaw) - }, repo.MustEnableWiki, context.CheckUnit(models.UnitTypeWiki), context.CheckUnit(models.UnitTypeWiki)) + }, repo.MustEnableWiki) m.Get("/archive/*", repo.MustBeNotBare, context.CheckUnit(models.UnitTypeCode), repo.Download) @@ -620,7 +620,7 @@ func RegisterRoutes(m *macaron.Macaron) { m.Get("/files", context.RepoRef(), repo.SetEditorconfigIfExists, repo.SetDiffViewStyle, repo.ViewPullFiles) m.Post("/merge", reqRepoWriter, repo.MergePullRequest) m.Post("/cleanup", context.RepoRef(), repo.CleanUpPullRequest) - }, repo.MustAllowPulls, context.CheckUnit(models.UnitTypePullRequests)) + }, repo.MustAllowPulls) m.Group("", func() { m.Get("/raw/*", repo.SingleDownload) |