Files
web2.0-backend/members/throttles.py
T
2017-05-27 11:50:00 +03:00

10 lines
193 B
Python

from rest_framework.throttling import UserRateThrottle
class BurstRateThrottle(UserRateThrottle):
scope = 'burst'
class SustainedRateThrottle(UserRateThrottle):
scope = 'sustained'