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.
36 lines
939 B
36 lines
939 B
export const SAMPLE_VALIDATION_ERROR = {
|
|
_message: 'User validation failed',
|
|
errors: {
|
|
email: {
|
|
$isValidatorError: true,
|
|
kind: 'required',
|
|
message: 'Path `email` is required.',
|
|
name: 'ValidatorError',
|
|
path: 'email',
|
|
properties: {
|
|
message: 'Path `email` is required.',
|
|
path: 'email',
|
|
type: 'required',
|
|
value: '',
|
|
},
|
|
value: '',
|
|
},
|
|
passwordHash: {
|
|
$isValidatorError: true,
|
|
kind: 'required',
|
|
message: 'Path `passwordHash` is required.',
|
|
name: 'ValidatorError',
|
|
path: 'passwordHash',
|
|
properties: {
|
|
message: 'Path `passwordHash` is required.',
|
|
path: 'passwordHash',
|
|
type: 'required',
|
|
value: '',
|
|
},
|
|
value: '',
|
|
},
|
|
},
|
|
message: 'User validation failed: email: Path `email` is required., passwordHash: Path `passwordHash` is required.',
|
|
name: 'ValidationError',
|
|
}
|