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
8cbb715f
Commit
8cbb715f
authored
Apr 27, 2013
by
JC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed definition of NestedModelSerializer to correct depth handling
parent
3b0fa3eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
12 deletions
+2
-12
rest_framework/serializers.py
+2
-12
No files found.
rest_framework/serializers.py
View file @
8cbb715f
...
...
@@ -206,18 +206,6 @@ class BaseSerializer(WritableField):
return
ret
#####
# Field methods - used when the serializer class is itself used as a field.
def
initialize
(
self
,
parent
,
field_name
):
"""
Same behaviour as usual Field, except that we need to keep track
of state so that we can deal with handling maximum depth.
"""
super
(
BaseSerializer
,
self
)
.
initialize
(
parent
,
field_name
)
if
parent
.
opts
.
depth
:
self
.
opts
.
depth
=
parent
.
opts
.
depth
-
1
#####
# Methods to convert or revert from objects <--> primitive representations.
def
get_field_key
(
self
,
field_name
):
...
...
@@ -619,6 +607,8 @@ class ModelSerializer(Serializer):
class
NestedModelSerializer
(
ModelSerializer
):
class
Meta
:
model
=
model_field
.
rel
.
to
depth
=
self
.
opts
.
depth
-
1
return
NestedModelSerializer
()
def
get_related_field
(
self
,
model_field
,
to_many
=
False
):
...
...
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