forked from NYANDEV/forgejo
parent
63c54f7e1f
commit
ffff835b73
1 changed files with 8 additions and 1 deletions
|
@ -845,7 +845,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(), context.APIContexter(), sudo())
|
}, securityHeaders(), reqTokenBySetting(), context.APIContexter(), sudo())
|
||||||
}
|
}
|
||||||
|
|
||||||
func securityHeaders() macaron.Handler {
|
func securityHeaders() macaron.Handler {
|
||||||
|
@ -857,3 +857,10 @@ 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