mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 07:50:54 +00:00
Redirect should returns error
This commit is contained in:
parent
1b8f05cef1
commit
d3a16dca85
@ -30,7 +30,7 @@ func errorRenderer(err error) Renderer {
|
||||
}
|
||||
|
||||
// Redirect renders http 302 with a URL
|
||||
func Redirect(localurl string) Renderer {
|
||||
func Redirect(localurl string) error {
|
||||
return statusCodeWithRender{302, func(ctx *beecontext.Context) {
|
||||
ctx.Redirect(302, localurl)
|
||||
}}
|
||||
|
Loading…
Reference in New Issue
Block a user