ValidationError #7488
Unanswered
rgranadosd
asked this question in
Q&A
ValidationError
#7488
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi I'm testing the jwt - todo sample and it's working over memory database but when I use it with a Msql database I have this response
"error": {
"statusCode": 422,
"name": "ValidationError",
"message": "La instancia
User
no es válida. Detalles:password
can't be blank (value: undefined).","details": {
"context": "User",
"codes": {
"password": [
"presence"
]
},
"messages": {
"password": [
"can't be blank"
]
}
}
}
}
BUT I have made the request with password field
{
"email": "[email protected]",
"password": "123456789854"
}
Beta Was this translation helpful? Give feedback.
All reactions