mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-02-03 13:14:30 +03:00
Merge pull request #1022 from rlr/missing-comma
Add missing comma to generic view example.
This commit is contained in:
commit
f2c3a88fc5
|
@ -40,7 +40,7 @@ For more complex cases you might also want to override various methods on the vi
|
||||||
|
|
||||||
For very simple cases you might want to pass through any class attributes using the `.as_view()` method. For example, your URLconf might include something the following entry.
|
For very simple cases you might want to pass through any class attributes using the `.as_view()` method. For example, your URLconf might include something the following entry.
|
||||||
|
|
||||||
url(r'^/users/', ListCreateAPIView.as_view(model=User) name='user-list')
|
url(r'^/users/', ListCreateAPIView.as_view(model=User), name='user-list')
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user