aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2011-06-14 10:30:29 +0100
committerTom Christie2011-06-14 10:30:29 +0100
commit612d335c4c8b152b573db24c76917018a936d758 (patch)
treed4bb3991160a67da902c85c128083f207c89d7ba
parentb07c5108e9d87a59af4c8eed6d14a632ada7ef37 (diff)
downloaddjango-rest-framework-612d335c4c8b152b573db24c76917018a936d758.tar.bz2
Add PerViewThrottling and PerResourceThrottling to __all__
-rw-r--r--djangorestframework/permissions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/djangorestframework/permissions.py b/djangorestframework/permissions.py
index b8a5224c..7e19c6cd 100644
--- a/djangorestframework/permissions.py
+++ b/djangorestframework/permissions.py
@@ -16,6 +16,8 @@ __all__ = (
'IsAdminUser',
'IsUserOrIsAnonReadOnly',
'PerUserThrottling'
+ 'PerViewThrottling'
+ 'PerResourceThrottling'
)