diff options
| author | Tom Christie | 2012-10-09 12:03:29 +0100 | 
|---|---|---|
| committer | Tom Christie | 2012-10-09 12:03:29 +0100 | 
| commit | e9475d036ff2fa0244ca0f947192ffa842391784 (patch) | |
| tree | 0ef480c54ad202bbc4d023c0190d759fd218b674 /docs/tutorial/quickstart.md | |
| parent | 115e61be0900b3d5dd93ff84f20629311aceff9f (diff) | |
| download | django-rest-framework-e9475d036ff2fa0244ca0f947192ffa842391784.tar.bz2 | |
Tweak settings in quickstart guide
Diffstat (limited to 'docs/tutorial/quickstart.md')
| -rw-r--r-- | docs/tutorial/quickstart.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index 1e9ed725..62338160 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -126,7 +126,7 @@ We'd also like to set a few global settings.  We'd like to turn on pagination, a      )      REST_FRAMEWORK = { -        'PERMISSION_CLASSES': ('rest_framework.permissions.IsAdminUser'), +        'DEFAULT_PERMISSIONS': ('rest_framework.permissions.IsAdminUser',),          'PAGINATE_BY': 10      } | 
