Files
Amirhossein Khalili 027afb7e23
Some checks failed
Backend CI/CD / test (push) Has been cancelled
Backend CI/CD / deploy (push) Has been cancelled
feat(contacts): store contact submissions
2026-06-07 14:09:38 +03:30

6 lines
141 B
Python

from rest_framework.throttling import AnonRateThrottle
class ContactSubmissionThrottle(AnonRateThrottle):
scope = "contact_submission"