From bae9cbce9c8fa02e62260e5bf4744d211c85f690 Mon Sep 17 00:00:00 2001 From: Morlinest Date: Sat, 30 Sep 2017 06:04:16 +0200 Subject: [PATCH] Remove redudant CheckUnit calls in router (#2627) --- routers/routes/routes.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/routers/routes/routes.go b/routers/routes/routes.go index c5d6793ff..8875fa47b 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)