mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-25 02:53:58 +03:00
update SerializerMethodField example in docs (#7858)
* update SerializerMethodField example * fix formatting
This commit is contained in:
parent
7e3dd9cd1b
commit
71e6c30034
|
@ -583,6 +583,7 @@ The serializer method referred to by the `method_name` argument should accept a
|
|||
|
||||
class Meta:
|
||||
model = User
|
||||
fields = '__all__'
|
||||
|
||||
def get_days_since_joined(self, obj):
|
||||
return (now() - obj.date_joined).days
|
||||
|
|
Loading…
Reference in New Issue
Block a user