From 612d335c4c8b152b573db24c76917018a936d758 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Tue, 14 Jun 2011 10:30:29 +0100 Subject: [PATCH] Add PerViewThrottling and PerResourceThrottling to __all__ --- djangorestframework/permissions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/djangorestframework/permissions.py b/djangorestframework/permissions.py index b8a5224cb..7e19c6cd0 100644 --- a/djangorestframework/permissions.py +++ b/djangorestframework/permissions.py @@ -16,6 +16,8 @@ __all__ = ( 'IsAdminUser', 'IsUserOrIsAnonReadOnly', 'PerUserThrottling' + 'PerViewThrottling' + 'PerResourceThrottling' )