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
Definitely. Looks not too hard to add and worth the trouble for ensuring APIs match.
No ETA though, I am in the middle of Turkey posting from a cybercafe right now.
Fixed on master.
As a sidenote, not setting fields at all, or setting fields = None used to have exactly the same result. The __all__ thing is a recent addition to Django. And what Django does with it is pretty straightforward: if meta.fields == '__all__': meta.fields = None.
Django allows forms to define
fields = '__all__'
to avoid listing all fields in the model, unfortunately this causes the following error:The text was updated successfully, but these errors were encountered: