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
joi-router/joi-router.js
Line 240 in 9fa16b6
It throws error when I use type: 'multipart' with body schema.
type: 'multipart'
Should it be allowed to parse multipart/form like below?
form.append('name', 'name'); form.append('image', image); // jpeg image axios.post(url, form, { headers: { 'Content-type': 'multipart/form-data' });
The text was updated successfully, but these errors were encountered:
fix: multipart form validator can have body schema.
0041193
koajs#116
No branches or pull requests
joi-router/joi-router.js
Line 240 in 9fa16b6
It throws error when I use
type: 'multipart'
with body schema.Should it be allowed to parse multipart/form like below?
The text was updated successfully, but these errors were encountered: