increase staff rate limit on enrollment API.

This commit is contained in:
Michael Frey
2017-08-29 08:52:27 -04:00
parent 0c204e3520
commit 8604a11c1f

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': '300/minute',
'staff': '400/minute',
}
def allow_request(self, request, view):