mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
Merge branch 'version-3.1' into model-serializer-api
This commit is contained in:
commit
94883ae7cd
|
@ -1216,7 +1216,7 @@ class ModelSerializer(Serializer):
|
|||
class NestedSerializer(ModelSerializer):
|
||||
class Meta:
|
||||
model = relation_info.related
|
||||
depth = nested_depth
|
||||
depth = nested_depth - 1
|
||||
|
||||
return NestedSerializer
|
||||
|
||||
|
@ -1247,6 +1247,6 @@ class HyperlinkedModelSerializer(ModelSerializer):
|
|||
class NestedSerializer(HyperlinkedModelSerializer):
|
||||
class Meta:
|
||||
model = relation_info.related
|
||||
depth = nested_depth
|
||||
depth = nested_depth - 1
|
||||
|
||||
return NestedSerializer
|
||||
|
|
Loading…
Reference in New Issue
Block a user