# What this PR does ## Which issue(s) this PR fixes ## Checklist - [x] Tests updated - [x] `CHANGELOG.md` updated --------- Co-authored-by: Joey Orlando <joey.orlando@grafana.com>
6 lines
139 B
Python
6 lines
139 B
Python
from rest_framework.throttling import UserRateThrottle
|
|
|
|
|
|
class UserThrottle(UserRateThrottle):
|
|
scope = "public_api"
|
|
rate = "300/m"
|