ソースを参照

Fix #464

tags/v0.9.99
Unknwon 9年前
コミット
0f037b430a
1個のファイルの変更4行の追加6行の削除
  1. 4
    6
      cmd/web.go

+ 4
- 6
cmd/web.go ファイルの表示

@@ -124,7 +124,7 @@ func runWeb(*cli.Context) {

// Routers.
m.Get("/", ignSignIn, routers.Home)
m.Get("/explore", routers.Explore)
m.Get("/explore", ignSignIn, routers.Explore)
m.Get("/install", bindIgnErr(auth.InstallForm{}), routers.Install)
m.Post("/install", bindIgnErr(auth.InstallForm{}), routers.InstallPost)
m.Group("", func(r *macaron.Router) {
@@ -355,11 +355,9 @@ func runWeb(*cli.Context) {
}, ignSignIn, middleware.RepoAssignment(true, true))

m.Group("/:username", func(r *macaron.Router) {
r.Get("/:reponame", middleware.RepoAssignment(true, true, true), repo.Home)
m.Group("/:reponame", func(r *macaron.Router) {
r.Any("/*", repo.Http)
})
}, ignSignInAndCsrf)
r.Get("/:reponame", ignSignIn, middleware.RepoAssignment(true, true, true), repo.Home)
r.Any("/:reponame/*", ignSignInAndCsrf, repo.Http)
})

// Not found handler.
m.NotFound(routers.NotFound)

読み込み中…
キャンセル
保存