Skip to content

model_form doesn't validate StringField's inside ListField #56

@adamlwgriffiths

Description

@adamlwgriffiths

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    type: bugSomething isn't working

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions