aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/quickstart.md
diff options
context:
space:
mode:
authorTom Christie2012-10-09 12:03:29 +0100
committerTom Christie2012-10-09 12:03:29 +0100
commite9475d036ff2fa0244ca0f947192ffa842391784 (patch)
tree0ef480c54ad202bbc4d023c0190d759fd218b674 /docs/tutorial/quickstart.md
parent115e61be0900b3d5dd93ff84f20629311aceff9f (diff)
downloaddjango-rest-framework-e9475d036ff2fa0244ca0f947192ffa842391784.tar.bz2
Tweak settings in quickstart guide
Diffstat (limited to 'docs/tutorial/quickstart.md')
-rw-r--r--docs/tutorial/quickstart.md2
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
}