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
The implementation of the meta_fields functionality breaks if a serializer doesn't have an explicitly defined fields attribute on its Meta. That attribute is not required by DRF; if omitted on a ModelSerializer all the model fields are used, minus any fields listed in Meta.exclude. While it is arguably better practice to explicitly define Meta.fields, the implicit form should be supported for compatibility with upstream.