You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
406 B
16 lines
406 B
import { ValidationError } from 'adminjs'
|
|
|
|
export const createValidationError = (originalError): ValidationError => {
|
|
const errors = Object.keys(originalError.errors).reduce((memo, key) => {
|
|
const { message, kind, name } = originalError.errors[key]
|
|
return {
|
|
...memo,
|
|
[key]: {
|
|
message,
|
|
type: kind || name,
|
|
},
|
|
}
|
|
}, {})
|
|
return new ValidationError(errors)
|
|
}
|