diff options
| author | Stephan Groß | 2013-07-31 11:26:22 -0700 |
|---|---|---|
| committer | Stephan Groß | 2013-07-31 11:26:22 -0700 |
| commit | 9e9233f87fe54cacacca3723ee4a23eb928bd7a8 (patch) | |
| tree | 0f8e975d93854c2513a7dd679fc2a2a3be05cf90 /docs/api-guide | |
| parent | 43a5f8183c90f1056bbf33bb1402e76883aeb1fd (diff) | |
| parent | e61210399154723f342ab9295c938bf72c8da7a6 (diff) | |
| download | django-rest-framework-9e9233f87fe54cacacca3723ee4a23eb928bd7a8.tar.bz2 | |
Merge pull request #1017 from minddust/third_party_docs
Add drf-any-permission docs entry #1014
Diffstat (limited to 'docs/api-guide')
| -rw-r--r-- | docs/api-guide/permissions.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/api-guide/permissions.md b/docs/api-guide/permissions.md index 2c0a055c..5597886d 100644 --- a/docs/api-guide/permissions.md +++ b/docs/api-guide/permissions.md @@ -188,6 +188,16 @@ Note that the generic views will check the appropriate object level permissions, Also note that the generic views will only check the object-level permissions for views that retrieve a single model instance. If you require object-level filtering of list views, you'll need to filter the queryset separately. See the [filtering documentation][filtering] for more details. +--- + +# Third party packages + +The following third party packages are also available. + +## DRF Any Permissions + +The [DRF Any Permissions][drf-any-permissions] packages provides a different permission behavior in contrast to the REST framework. Only one of the given permissions has to be true in order to get access to the view. + [cite]: https://developer.apple.com/library/mac/#documentation/security/Conceptual/AuthenticationAndAuthorizationGuide/Authorization/Authorization.html [authentication]: authentication.md [throttling]: throttling.md @@ -197,3 +207,4 @@ Also note that the generic views will only check the object-level permissions fo [django-oauth2-provider]: https://github.com/caffeinehit/django-oauth2-provider [2.2-announcement]: ../topics/2.2-announcement.md [filtering]: filtering.md +[drf-any-permissions]: https://github.com/kevin-brown/drf-any-permissions |
