increase staff user rate limit

This commit is contained in:
Michael Frey
2017-08-17 16:23:10 -04:00
parent 5b34264cbc
commit fb7b98da0b

View File

@@ -75,7 +75,7 @@ class EnrollmentUserThrottle(UserRateThrottle, ApiKeyPermissionMixIn):
"""Limit the number of requests users can make to the enrollment API."""
THROTTLE_RATES = {
'user': '40/minute',
'staff': '200/minute',
'staff': '300/minute',
}
def allow_request(self, request, view):