diff options
| author | Tom Christie | 2012-10-28 12:10:12 -0700 |
|---|---|---|
| committer | Tom Christie | 2012-10-28 12:10:12 -0700 |
| commit | 1b2c2358476fd7948f87c5c161344a44de28275f (patch) | |
| tree | a3088824474b6be5a6195290c524bb4359b5b64d /docs/api-guide/settings.md | |
| parent | 1eb56ebdd922907fd6c0598f1cae659b8f8a4e42 (diff) | |
| parent | af96fe05d0138c34128fc3944fc2701cbad5bd01 (diff) | |
| download | django-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.md | 6 |
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 |
