From 9c528016fbe098010a888399fa1df0c9e9e5f9c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Fri, 24 Nov 2017 14:27:10 -0500 Subject: [PATCH] Remove global permission class This interferes with Core API schema endpoint --- docs/tutorial/quickstart.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/tutorial/quickstart.md b/docs/tutorial/quickstart.md index f28f35a50..4cea696c2 100644 --- a/docs/tutorial/quickstart.md +++ b/docs/tutorial/quickstart.md @@ -142,9 +142,6 @@ We'd also like to set a few global settings. We'd like to turn on pagination, a ) REST_FRAMEWORK = { - 'DEFAULT_PERMISSION_CLASSES': [ - 'rest_framework.permissions.IsAdminUser', - ], 'PAGE_SIZE': 10 }