Files
web2.0-backend/members/throttles.py
2022-01-13 22:10:51 +02: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"