mirror of
https://codeberg.org/davrot/forgejo.git
synced 2025-05-20 14:00:04 +02:00
Fix access log (#14475)
Fix #14121, #14478. The `AccessLog` middleware has to be after `Contexter` or `APIContexter` so that we can get `LoginUserName` if possible. And also there is a **BREAK** change that it removed internal API access log.
This commit is contained in:
parent
4c6e029506
commit
a51cc6dea4
10 changed files with 129 additions and 72 deletions
|
@ -553,6 +553,11 @@ func Routes() *web.Route {
|
|||
}))
|
||||
}
|
||||
m.Use(context.APIContexter())
|
||||
|
||||
if setting.EnableAccessLog {
|
||||
m.Use(context.AccessLogger())
|
||||
}
|
||||
|
||||
m.Use(context.ToggleAPI(&context.ToggleOptions{
|
||||
SignInRequired: setting.Service.RequireSignInView,
|
||||
}))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue