diff options
Diffstat (limited to 'rest_framework/permissions.py')
| -rw-r--r-- | rest_framework/permissions.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/rest_framework/permissions.py b/rest_framework/permissions.py index 3a669822..51837a01 100644 --- a/rest_framework/permissions.py +++ b/rest_framework/permissions.py @@ -5,15 +5,6 @@ for checking if a request passes a certain set of constraints. Permission behavior is provided by mixing the :class:`mixins.PermissionsMixin` class into a :class:`View` class. """ -__all__ = ( - 'BasePermission', - 'FullAnonAccess', - 'IsAuthenticated', - 'IsAdminUser', - 'IsUserOrIsAnonReadOnly', - 'PerUserThrottling', - 'PerViewThrottling', -) SAFE_METHODS = ['GET', 'HEAD', 'OPTIONS'] |
