6 lines
141 B
Python
6 lines
141 B
Python
from rest_framework.throttling import AnonRateThrottle
|
|
|
|
|
|
class ContactSubmissionThrottle(AnonRateThrottle):
|
|
scope = "contact_submission"
|