mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-10 19:56:59 +03:00
Specifying module for CurrentUserDefault()
Prevents having to lookup the import
This commit is contained in:
parent
5cc0a3c2a8
commit
cbf17a5ffe
|
@ -172,7 +172,7 @@ REST framework includes a couple of defaults that may be useful in this context.
|
|||
A default class that can be used to represent the current user. In order to use this, the 'request' must have been provided as part of the context dictionary when instantiating the serializer.
|
||||
|
||||
owner = serializers.HiddenField(
|
||||
default=CurrentUserDefault()
|
||||
default=serializers.CurrentUserDefault()
|
||||
)
|
||||
|
||||
#### CreateOnlyDefault
|
||||
|
|
Loading…
Reference in New Issue
Block a user