diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2023-05-23 09:29:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-23 09:29:15 +0800 |
commit | abcf5a7b5e2c3df951b8048317a99a89b040b489 (patch) | |
tree | 46f089aec1c83dfa45e7e9ff18cbe4e508306cbb /modules/web/handler.go | |
parent | 5c0745c0349f0709d0fc36fd8a97dcab86bce28a (diff) | |
download | gitea-abcf5a7b5e2c3df951b8048317a99a89b040b489.tar.gz gitea-abcf5a7b5e2c3df951b8048317a99a89b040b489.zip |
Fix install page context, make the install page tests really test (#24858)
Fix #24856
Rename "context.contextKey" to "context.WebContextKey", this context is
for web context only. But the Context itself is not renamed, otherwise
it would cause a lot of changes (if we really want to rename it, there
could be a separate PR).
The old test code doesn't really test, the "install page" gets broken
not only one time, so use new test code to make sure the "install page"
could work.
Diffstat (limited to 'modules/web/handler.go')
-rw-r--r-- | modules/web/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/web/handler.go b/modules/web/handler.go index 5013bac93f..c8aebd9051 100644 --- a/modules/web/handler.go +++ b/modules/web/handler.go @@ -22,7 +22,7 @@ type ResponseStatusProvider interface { // TODO: decouple this from the context package, let the context package register these providers var argTypeProvider = map[reflect.Type]func(req *http.Request) ResponseStatusProvider{ reflect.TypeOf(&context.APIContext{}): func(req *http.Request) ResponseStatusProvider { return context.GetAPIContext(req) }, - reflect.TypeOf(&context.Context{}): func(req *http.Request) ResponseStatusProvider { return context.GetContext(req) }, + reflect.TypeOf(&context.Context{}): func(req *http.Request) ResponseStatusProvider { return context.GetWebContext(req) }, reflect.TypeOf(&context.PrivateContext{}): func(req *http.Request) ResponseStatusProvider { return context.GetPrivateContext(req) }, } |