Skip to content

Commit 8d76364

Browse files
committed
remove nolint:dupl
1 parent 104344a commit 8d76364

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routers/web/web.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ func RegisterRoutes(m *web.Route) {
892892
m.Get("", org.Projects)
893893
m.Get("/{id}", org.ViewProject)
894894
}, reqUnitAccess(unit.TypeProjects, perm.AccessModeRead))
895-
m.Group("", func() { //nolint:dupl
895+
m.Group("", func() {
896896
m.Get("/new", org.NewProject)
897897
m.Post("/new", web.Bind(forms.CreateProjectForm{}), org.NewProjectPost)
898898
m.Group("/{id}", func() {

0 commit comments

Comments
 (0)