You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating a REST API on API Gateway and would like to implement the HEAD method
Solution/User Experience
I would like to be able to use @app.head("/sources") to decorate my function method in exactly the same way that i can use @app.get("/sources") to decorate a GET request.
Alternative solutions
I am currently using the route option `@app.route("/sources", method=["HEAD"])` which works fine but it would be nice to support HEAD in the same way as the other verbs you currently support.
Thank you!
Use case
I am creating a REST API on API Gateway and would like to implement the HEAD method
Solution/User Experience
I would like to be able to use
@app.head("/sources")
to decorate my function method in exactly the same way that i can use@app.get("/sources")
to decorate a GET request.Alternative solutions
Acknowledgment
The text was updated successfully, but these errors were encountered: