aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/settings.md
diff options
context:
space:
mode:
authorTom Christie2012-10-28 12:10:12 -0700
committerTom Christie2012-10-28 12:10:12 -0700
commit1b2c2358476fd7948f87c5c161344a44de28275f (patch)
treea3088824474b6be5a6195290c524bb4359b5b64d /docs/api-guide/settings.md
parent1eb56ebdd922907fd6c0598f1cae659b8f8a4e42 (diff)
parentaf96fe05d0138c34128fc3944fc2701cbad5bd01 (diff)
downloaddjango-rest-framework-1b2c2358476fd7948f87c5c161344a44de28275f.tar.bz2
Merge pull request #327 from tomchristie/allow-any-permission
Add AllowAny permission
Diffstat (limited to 'docs/api-guide/settings.md')
-rw-r--r--docs/api-guide/settings.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/api-guide/settings.md b/docs/api-guide/settings.md
index 21efc853..3556a5b1 100644
--- a/docs/api-guide/settings.md
+++ b/docs/api-guide/settings.md
@@ -72,7 +72,11 @@ Default:
A list or tuple of permission classes, that determines the default set of permissions checked at the start of a view.
-Default: `()`
+Default:
+
+ (
+ 'rest_framework.permissions.AllowAny',
+ )
## DEFAULT_THROTTLE_CLASSES