Closed marvinhagemeister closed 7 months ago
This PR adds a ctx.redirect(path, status) helper that aims to reduce the verbosity of having to manually create a Response obejct for a mere redirect.
ctx.redirect(path, status)
Response
// Before new Response(null, { status: 307, headers: { Location: "/foo/bar" }, }) // After ctx.redirect("/foo/bar", 307)
If the second parameter is not passed, it will default to 302.
302
Hi @marvinhagemeister, cool feature, but what about docs? 🙃
I can open a PR if you'd like.
This PR adds a
ctx.redirect(path, status)
helper that aims to reduce the verbosity of having to manually create aResponse
obejct for a mere redirect.If the second parameter is not passed, it will default to
302
.