diff options
| author | Tom Christie | 2013-12-04 14:59:28 +0000 |
|---|---|---|
| committer | Tom Christie | 2013-12-04 14:59:28 +0000 |
| commit | 6446b44f01f06d7f5482798a16025ebcea75c024 (patch) | |
| tree | 7edd3614a2a9b75d65ed05497a835302b5dcadc3 /docs/api-guide | |
| parent | de5b9e39dd4c21f4dcceb7cf13c7366b0fb74ec9 (diff) | |
| parent | 04a43ddca565d96848c25a1d1879c9e7a53a7b6c (diff) | |
| download | django-rest-framework-6446b44f01f06d7f5482798a16025ebcea75c024.tar.bz2 | |
Merge branch 'master' of https://github.com/tomchristie/django-rest-framework
Diffstat (limited to 'docs/api-guide')
| -rw-r--r-- | docs/api-guide/viewsets.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/viewsets.md b/docs/api-guide/viewsets.md index 1062cb32..4fdd9364 100644 --- a/docs/api-guide/viewsets.md +++ b/docs/api-guide/viewsets.md @@ -170,7 +170,7 @@ The actions provided by the `ModelViewSet` class are `.list()`, `.retrieve()`, #### Example -Because `ModelViewSet` extends `GenericAPIView`, you'll normally need to provide at least the `queryset` and `serializer_class` attributes. For example: +Because `ModelViewSet` extends `GenericAPIView`, you'll normally need to provide at least the `queryset` and `serializer_class` attributes, or the `model` attribute shortcut. For example: class AccountViewSet(viewsets.ModelViewSet): """ |
