mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-01-24 08:14:16 +03:00
Add missing definite article
This commit is contained in:
parent
71e1a3942e
commit
6ee361332b
|
@ -509,7 +509,7 @@ Model fields which have `editable=False` set, and `AutoField` fields will be set
|
|||
|
||||
**Note**: There is a special-case where a read-only field is part of a `unique_together` constraint at the model level. Here you **must** specify the field explicitly and provide a valid default value.
|
||||
|
||||
A common example of this is a read-only relation to currently authenticated `User` which is `unique_together` with another identifier. In this case you would declare the user field like so:
|
||||
A common example of this is a read-only relation to the currently authenticated `User` which is `unique_together` with another identifier. In this case you would declare the user field like so:
|
||||
|
||||
user = serializers.PrimaryKeyRelatedField(read_only=True, default=serializers.CurrentUserDefault())
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user