diff options
author | Unknwon <u@gogs.io> | 2016-03-11 17:12:37 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-03-11 17:12:37 -0500 |
commit | f76d821bdacf4449113547f3cc3301349516cd34 (patch) | |
tree | 6788fe9179e815b6c0e3382463d1087b0463108f /cmd/web.go | |
parent | 263304b6b778a3c9e55128da050df8e31e291fab (diff) |
fix #2804
Diffstat (limited to 'cmd/web.go')
-rw-r--r-- | cmd/web.go | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -194,6 +194,9 @@ func runWeb(ctx *cli.Context) { // Routers. m.Get("/", ignSignIn, routers.Home) m.Group("/explore", func() { + m.Get("", func(ctx *context.Context) { + ctx.Redirect(setting.AppSubUrl + "/explore/repos") + }) m.Get("/repos", routers.ExploreRepos) m.Get("/users", routers.ExploreUsers) }, ignSignIn) |