mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-06-22 14:33:31 +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 NestedSerializer(ModelSerializer):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = relation_info.related
|
model = relation_info.related
|
||||||
depth = nested_depth
|
depth = nested_depth - 1
|
||||||
|
|
||||||
return NestedSerializer
|
return NestedSerializer
|
||||||
|
|
||||||
|
@ -1247,6 +1247,6 @@ class HyperlinkedModelSerializer(ModelSerializer):
|
||||||
class NestedSerializer(HyperlinkedModelSerializer):
|
class NestedSerializer(HyperlinkedModelSerializer):
|
||||||
class Meta:
|
class Meta:
|
||||||
model = relation_info.related
|
model = relation_info.related
|
||||||
depth = nested_depth
|
depth = nested_depth - 1
|
||||||
|
|
||||||
return NestedSerializer
|
return NestedSerializer
|
||||||
|
|
Loading…
Reference in New Issue
Block a user