- Default validated to false

This commit is contained in:
Simon Redfern 2022-06-15 17:30:08 +02:00
parent deb15c23e8
commit c090ccf3d7

View File

@ -1486,7 +1486,7 @@ trait APIMethods200 {
.username(postedData.username)
.email(postedData.email)
.password(postedData.password)
.validated(true) // TODO Get this from Props
.validated(false) // TODO Get this from Props
if(userCreated.validate.size > 0){
Full(errorJsonResponse(userCreated.validate.map(_.msg).mkString(";")))
}