mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-28 15:03:17 +01:00
parent
bb14c97d40
commit
42072783c9
1 changed files with 4 additions and 0 deletions
|
@ -186,6 +186,10 @@ func runWeb(ctx *cli.Context) error {
|
||||||
// FIXME: not all routes need go through same middlewares.
|
// FIXME: not all routes need go through same middlewares.
|
||||||
// Especially some AJAX requests, we can reduce middleware number to improve performance.
|
// Especially some AJAX requests, we can reduce middleware number to improve performance.
|
||||||
// Routers.
|
// Routers.
|
||||||
|
// for health check
|
||||||
|
m.Head("/", func() string {
|
||||||
|
return ""
|
||||||
|
})
|
||||||
m.Get("/", ignSignIn, routers.Home)
|
m.Get("/", ignSignIn, routers.Home)
|
||||||
m.Group("/explore", func() {
|
m.Group("/explore", func() {
|
||||||
m.Get("", func(ctx *context.Context) {
|
m.Get("", func(ctx *context.Context) {
|
||||||
|
|
Loading…
Reference in a new issue