We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like for JSON parse failures to result in a 400 bad request invalid JSON.
For example
@Post('/foo') async deleteFoo(@Body({ format: 'json' }) id: string) { return {"result":"success"} }
If I POST with a body that is not valid JSON it would result in a 400 bad request.
The text was updated successfully, but these errors were encountered:
As of latest patch release, it returns 500. Let's leave this open to ensure we get 400 for this specific case.
Sorry, something went wrong.
No branches or pull requests
I would like for JSON parse failures to result in a 400 bad request invalid JSON.
For example
If I POST with a body that is not valid JSON it would result in a 400 bad request.
The text was updated successfully, but these errors were encountered: