File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -988,7 +988,7 @@ class APIVersionView(APIView): # pragma: no cover
988988 swagger_schema = None
989989
990990 def get_throttles (self ):
991- return ThrottleUtil . get_throttles_by_user_plan ( self . request . user )
991+ return []
992992
993993 @staticmethod
994994 def get (_ ):
@@ -1000,7 +1000,7 @@ class ChangeLogView(APIView): # pragma: no cover
10001000 swagger_schema = None
10011001
10021002 def get_throttles (self ):
1003- return ThrottleUtil . get_throttles_by_user_plan ( self . request . user )
1003+ return []
10041004
10051005 @staticmethod
10061006 def get (_ ):
@@ -1012,6 +1012,9 @@ class RootView(BaseAPIView): # pragma: no cover
10121012 permission_classes = (AllowAny ,)
10131013 serializer_class = RootSerializer
10141014
1015+ def get_throttles (self ):
1016+ return []
1017+
10151018 def get (self , _ ):
10161019 from core .urls import urlpatterns
10171020 data = {'version' : __version__ , 'routes' : {}}
You can’t perform that action at this time.
0 commit comments