diff options
| author | Tom Christie | 2011-06-14 10:31:18 +0100 |
|---|---|---|
| committer | Tom Christie | 2011-06-14 10:31:18 +0100 |
| commit | fb26b11a75502ce4ec22b6e71d9c05964fa0e5d9 (patch) | |
| tree | 3cf5d5487b839b92db78add6024f25063ac90e6c | |
| parent | 612d335c4c8b152b573db24c76917018a936d758 (diff) | |
| download | django-rest-framework-fb26b11a75502ce4ec22b6e71d9c05964fa0e5d9.tar.bz2 | |
Add PerViewThrottling and PerResourceThrottling to __all__
| -rw-r--r-- | djangorestframework/permissions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/djangorestframework/permissions.py b/djangorestframework/permissions.py index 7e19c6cd..56bc9697 100644 --- a/djangorestframework/permissions.py +++ b/djangorestframework/permissions.py @@ -15,8 +15,8 @@ __all__ = ( 'IsAuthenticated', 'IsAdminUser', 'IsUserOrIsAnonReadOnly', - 'PerUserThrottling' - 'PerViewThrottling' + 'PerUserThrottling', + 'PerViewThrottling', 'PerResourceThrottling' ) |
