Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
e1bbe9d5
Commit
e1bbe9d5
authored
Jan 06, 2014
by
Yuri Prezument
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set `allow_none = True` for CharFields with null=True
parent
6e622d64
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
rest_framework/serializers.py
+6
-1
No files found.
rest_framework/serializers.py
View file @
e1bbe9d5
...
@@ -821,10 +821,15 @@ class ModelSerializer(Serializer):
...
@@ -821,10 +821,15 @@ class ModelSerializer(Serializer):
kwargs
.
update
({
attribute
:
getattr
(
model_field
,
attribute
)})
kwargs
.
update
({
attribute
:
getattr
(
model_field
,
attribute
)})
try
:
try
:
return
self
.
field_mapping
[
model_field
.
__class__
](
**
kwargs
)
field_class
=
self
.
field_mapping
[
model_field
.
__class__
]
except
KeyError
:
except
KeyError
:
return
ModelField
(
model_field
=
model_field
,
**
kwargs
)
return
ModelField
(
model_field
=
model_field
,
**
kwargs
)
if
issubclass
(
field_class
,
CharField
)
and
model_field
.
null
:
kwargs
[
'allow_none'
]
=
True
return
field_class
(
**
kwargs
)
def
get_validation_exclusions
(
self
):
def
get_validation_exclusions
(
self
):
"""
"""
Return a list of field names to exclude from model validation.
Return a list of field names to exclude from model validation.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment