Files
web2.0-backend/members/throttles.py
T
2017-09-20 21:00:58 +03:00

16 lines
328 B
Python

"""File containing throttle rates for API."""
from rest_framework.throttling import UserRateThrottle
class BurstRateThrottle(UserRateThrottle):
"""Class for burst rate throttle."""
scope = 'burst'
class SustainedRateThrottle(UserRateThrottle):
"""Class for sustained rate throttle."""
scope = 'sustained'