mirror of
https://github.com/fastapi/fastapi.git
synced 2026-05-19 13:57:51 -04:00
✨ Allow setting the response_class to RedirectResponse and returning the URL from the function (#3457)
This commit is contained in:
committed by
GitHub
parent
ea8d7f689e
commit
dc5a966548
9
docs_src/custom_response/tutorial006c.py
Normal file
9
docs_src/custom_response/tutorial006c.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from fastapi import FastAPI
|
||||
from fastapi.responses import RedirectResponse
|
||||
|
||||
app = FastAPI()
|
||||
|
||||
|
||||
@app.get("/pydantic", response_class=RedirectResponse, status_code=302)
|
||||
async def redirect_pydantic():
|
||||
return "https://pydantic-docs.helpmanual.io/"
|
||||
Reference in New Issue
Block a user