summaryrefslogtreecommitdiffstats
path: root/cmd/web.go
diff options
context:
space:
mode:
authorJustin Nuß <justin.nuss@hmmh.de>2014-07-04 11:41:43 +0200
committerJustin Nuß <justin.nuss@hmmh.de>2014-07-04 11:41:43 +0200
commita481672c5cec1efe8d4856b393e98775c55ad8bc (patch)
tree6fbedb5f9e385379c0f82023991564b4b16d57d2 /cmd/web.go
parent0820b24f0bea6a0ce2f9c035a581bcf829ad0e13 (diff)
downloadgitea-a481672c5cec1efe8d4856b393e98775c55ad8bc.tar.gz
gitea-a481672c5cec1efe8d4856b393e98775c55ad8bc.zip
Add 'pprof' tag for enabling debugging
Diffstat (limited to 'cmd/web.go')
-rw-r--r--cmd/web.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go
index 2f552d8667..0515bcee30 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -26,6 +26,7 @@ import (
"github.com/gogits/gogs/routers"
"github.com/gogits/gogs/routers/admin"
"github.com/gogits/gogs/routers/api/v1"
+ "github.com/gogits/gogs/routers/debug"
"github.com/gogits/gogs/routers/dev"
"github.com/gogits/gogs/routers/org"
"github.com/gogits/gogs/routers/repo"
@@ -205,6 +206,8 @@ func runWeb(*cli.Context) {
r.Post("/:org/settings/delete", org.DeletePost)
}, reqSignIn)
+ debug.RegisterRoutes(m)
+
m.Group("/:username/:reponame", func(r martini.Router) {
r.Get("/settings", repo.Setting)
r.Post("/settings", bindIgnErr(auth.RepoSettingForm{}), repo.SettingPost)