You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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),
),
The text was updated successfully, but these errors were encountered: