Closed chiragkanhasoft closed 3 years ago
I want to use throttle_classes for my API which has spyne application, i found below link to implement it in url.py file, but it is not working for spyne DjangoView.
throttle_classes
Link for use classes in URL
i have tried like this.
url( r"^vapi/", (permission_classes([IsAuthenticated])(vapi_view.vapp)).as_view(application=vapi_view.vapp), ),
no questions in the issue tracker. see https://github.com/arskom/spyne#getting-support
I want to use
throttle_classes
for my API which has spyne application, i found below link to implement it in url.py file, but it is not working for spyne DjangoView.Link for use classes in URL
i have tried like this.
url( r"^vapi/", (permission_classes([IsAuthenticated])(vapi_view.vapp)).as_view(application=vapi_view.vapp), ),