Commit 650866cc by Tom Christie

Blank relational fields map to required=False serializer fields. Closes #3210.

parent 472784b7
...@@ -226,7 +226,7 @@ def get_relation_kwargs(field_name, relation_info): ...@@ -226,7 +226,7 @@ def get_relation_kwargs(field_name, relation_info):
# No further keyword arguments are valid. # No further keyword arguments are valid.
return kwargs return kwargs
if model_field.has_default() or model_field.null: if model_field.has_default() or model_field.blank or model_field.null:
kwargs['required'] = False kwargs['required'] = False
if model_field.null: if model_field.null:
kwargs['allow_null'] = True kwargs['allow_null'] = True
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment