diff options
| author | Tom Christie | 2012-10-27 20:04:33 +0100 | 
|---|---|---|
| committer | Tom Christie | 2012-10-27 20:04:33 +0100 | 
| commit | d995742afc09ff8d387751a6fe47b9686845740b (patch) | |
| tree | ea10cb18443ae4370c25697eda95bd7c0d9aa01b /docs/api-guide/settings.md | |
| parent | 51a64019260d99e3c615b407353e344cf615da1e (diff) | |
| download | django-rest-framework-d995742afc09ff8d387751a6fe47b9686845740b.tar.bz2 | |
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 | 
