1
0
Fork 0
mirror of synced 2024-08-18 19:41:30 +12:00

Throw 400 when validation fails

This commit is contained in:
Mel O'Hagan 2022-10-27 15:10:22 +01:00
parent efc73caf44
commit a809700ec2

View file

@ -118,7 +118,7 @@ exports.patch = async ctx => {
})
if (!validateResult.valid) {
throw { validation: validateResult.errors }
ctx.throw(400, { validation: validateResult.errors })
}
// returned row is cleaned and prepared for writing to DB