forked from NYANDEV/forgejo
This reverts commit 3c63c3ace4
.
This commit is contained in:
parent
3c63c3ace4
commit
0a80164bec
1 changed files with 1 additions and 8 deletions
|
@ -862,7 +862,7 @@ func RegisterRoutes(m *macaron.Macaron) {
|
||||||
m.Group("/topics", func() {
|
m.Group("/topics", func() {
|
||||||
m.Get("/search", repo.TopicSearch)
|
m.Get("/search", repo.TopicSearch)
|
||||||
})
|
})
|
||||||
}, securityHeaders(), reqTokenBySetting(), context.APIContexter(), sudo())
|
}, securityHeaders(), context.APIContexter(), sudo())
|
||||||
}
|
}
|
||||||
|
|
||||||
func securityHeaders() macaron.Handler {
|
func securityHeaders() macaron.Handler {
|
||||||
|
@ -874,10 +874,3 @@ func securityHeaders() macaron.Handler {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func reqTokenBySetting() macaron.Handler {
|
|
||||||
if setting.Service.RequireSignInView {
|
|
||||||
return reqToken()
|
|
||||||
}
|
|
||||||
return func(ctx *macaron.Context) {}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue