You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we most of the time return something like {message: "foo", errors: []}, but at least for invalid json something like {messages: []} is returned. We should work out a constent format and always use it.
To change the messages behavior it looks like we have to override https://github.com/marshmallow-code/webargs/blob/dev/src/webargs/flaskparser.py#L114
The text was updated successfully, but these errors were encountered:
Currently we most of the time return something like
{message: "foo", errors: []}
, but at least for invalid json something like{messages: []}
is returned. We should work out a constent format and always use it.To change the messages behavior it looks like we have to override https://github.com/marshmallow-code/webargs/blob/dev/src/webargs/flaskparser.py#L114
The text was updated successfully, but these errors were encountered: