summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-09-05 17:28:09 -0400
committerUnknwon <joe2010xtmf@163.com>2014-09-05 17:28:09 -0400
commitab7206d6b787645956b0279f729bd7b22cbed690 (patch)
tree708566eff3437c25984e7ae91f3c34f254868547 /cmd
parent033a7f022401fb1bd5fdc540f24ba26f5ab64a75 (diff)
downloadgitea-ab7206d6b787645956b0279f729bd7b22cbed690.tar.gz
gitea-ab7206d6b787645956b0279f729bd7b22cbed690.zip
Fix #348
Diffstat (limited to 'cmd')
-rw-r--r--cmd/web.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go
index 57164683ac..cad1db336b 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -124,6 +124,7 @@ func runWeb(*cli.Context) {
// Routers.
m.Get("/", ignSignIn, routers.Home)
+ m.Get("/explore", routers.Explore)
m.Get("/install", bindIgnErr(auth.InstallForm{}), routers.Install)
m.Post("/install", bindIgnErr(auth.InstallForm{}), routers.InstallPost)
m.Group("", func(r *macaron.Router) {