What's Changed
* Updated pagination part in the Quick Example doc by marcjermainepontiveros-sun in https://github.com/eadwinCode/django-ninja-extra/pull/29
* Doc code clean up by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/31
* Throttled Controller by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/32
* Throttled Controller Doc update by eadwinCode in https://github.com/eadwinCode/django-ninja-extra/pull/33
New Feature
python
api_controller("/throttled-controller")
class ThrottlingControllerSample(ControllerBase):
throttling_classes = [
DynamicRateThrottle,
]
throttling_init_kwargs = dict(scope="dynamic_scope")
http_get("/endpoint_1")
throttle
def endpoint_1(self, request):
this will override the generally throttling applied at the controller
return "foo"
http_get("/endpoint_2")
def endpoint_2(self, request):
return "foo"
New Contributors
* marcjermainepontiveros-sun made their first contribution in https://github.com/eadwinCode/django-ninja-extra/pull/29
**Full Changelog**: https://github.com/eadwinCode/django-ninja-extra/compare/0.15.6...0.15.8