aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2013-12-10 00:36:09 -0800
committerTom Christie2013-12-10 00:36:09 -0800
commite6dfc06f915d8b2d9921b47465082d4c613e01ad (patch)
tree7352f0eb0d1c487ff2bf8e6024593befbc6bc260
parentb599447b717a77338ab989515cb58116bec11d9f (diff)
parent9ba7be959c2a2fea989527c590ce833df5925e63 (diff)
downloaddjango-rest-framework-e6dfc06f915d8b2d9921b47465082d4c613e01ad.tar.bz2
Merge pull request #1278 from caxap/master
Added REST Condition to 3rd party permissions packages list.
-rw-r--r--docs/api-guide/permissions.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/api-guide/permissions.md b/docs/api-guide/permissions.md
index 871de84e..60624b63 100644
--- a/docs/api-guide/permissions.md
+++ b/docs/api-guide/permissions.md
@@ -230,6 +230,10 @@ The [DRF Any Permissions][drf-any-permissions] packages provides a different per
The [Composed Permissions][composed-permissions] package provides a simple way to define complex and multi-depth (with logic operators) permission objects, using small and reusable components.
+## REST Condition
+
+The [REST Condition][rest-condition] yet another but simple and convenient extension for complex permissions tree. The extension allows to combine permissions with logical operators rules. Logical expressions can be used along with the usual permissions classes in api views.
+
[cite]: https://developer.apple.com/library/mac/#documentation/security/Conceptual/AuthenticationAndAuthorizationGuide/Authorization/Authorization.html
[authentication]: authentication.md
[throttling]: throttling.md
@@ -243,3 +247,4 @@ The [Composed Permissions][composed-permissions] package provides a simple way t
[filtering]: filtering.md
[drf-any-permissions]: https://github.com/kevin-brown/drf-any-permissions
[composed-permissions]: https://github.com/niwibe/djangorestframework-composed-permissions
+[rest-condition]: https://github.com/caxap/rest_condition