Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
throttles.py 217 B
from ..throttles import PostOrPutUserRateThrottle


class EventCreationThrottle(PostOrPutUserRateThrottle):
    scope = 'event_creation'

class AnnotationThrottle(PostOrPutUserRateThrottle):
    scope = 'annotation'