diff options
| author | Matthew Dapena-Tretter | 2014-11-21 15:58:31 -0500 | 
|---|---|---|
| committer | Matthew Dapena-Tretter | 2014-11-21 16:04:45 -0500 | 
| commit | 8e940a22fb292ed6b20b9e4b5da607ffca1dba2f (patch) | |
| tree | 190719a58462e8936eaf82ac2fdd388e19c03817 | |
| parent | 5b671cb515cf49bc0335bdaa7ca0759827eb844d (diff) | |
| download | django-rest-framework-8e940a22fb292ed6b20b9e4b5da607ffca1dba2f.tar.bz2 | |
Clarify how permission classes are composed
all/every/AND or any/OR? all/every/AND!
| -rw-r--r-- | docs/api-guide/settings.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/api-guide/settings.md b/docs/api-guide/settings.md index 48af30a5..96d715ea 100644 --- a/docs/api-guide/settings.md +++ b/docs/api-guide/settings.md @@ -74,7 +74,7 @@ Default:  #### DEFAULT_PERMISSION_CLASSES -A list or tuple of permission classes, that determines the default set of permissions checked at the start of a view. +A list or tuple of permission classes, that determines the default set of permissions checked at the start of a view. Permission must be granted by every class in the list.  Default: | 
