mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-11 04:07:39 +03:00
Documentation fix for list serializers.
This commit is contained in:
parent
75a63c2c2e
commit
f7646627f1
|
@ -800,6 +800,9 @@ Here's an example of how you might choose to implement multiple updates:
|
|||
return ret
|
||||
|
||||
class BookSerializer(serializers.Serializer):
|
||||
# You must explicitly mark the primary key as editable.
|
||||
id = serializers.IntegerField()
|
||||
|
||||
...
|
||||
class Meta:
|
||||
list_serializer_class = BookListSerializer
|
||||
|
|
Loading…
Reference in New Issue
Block a user