I have the following inside a document class
tags = db.ListField(db.StringField(max_length=30, min_length=1), required=True)
I use the model_form to create the form.
If I send back a tag field with no content the form.validate() function should return False.
Instead, the function is returning True.
It is then left to Mongo to pick up the validation error and throw an exception.
ValidationError (Post:51ad4c74c47f3e07507984f4) (3.String value is too short: ['tags'])
The form.validate() function should validate the contents of ListField's.
I have the following inside a document class
I use the model_form to create the form.
If I send back a tag field with no content the form.validate() function should return False.
Instead, the function is returning True.
It is then left to Mongo to pick up the validation error and throw an exception.
The form.validate() function should validate the contents of ListField's.