Files
qlockify-backend-deployment/apps/demos/api/throttles.py

6 lines
125 B
Python

from rest_framework.throttling import AnonRateThrottle
class DemoStartThrottle(AnonRateThrottle):
scope = "demo_start"