@@ -496,7 +496,7 @@ def get(self, request: HttpRequest) -> Response:
496496 responses = {
497497 status .HTTP_200_OK : OrganizationSerializer (many = True ),
498498 status .HTTP_401_UNAUTHORIZED : "The user is not authenticated" ,
499- status .HTTP_403_FORBIDDEN : "The user does not have the required permisisons " ,
499+ status .HTTP_403_FORBIDDEN : "The user does not have the required permissions " ,
500500 },
501501)
502502class AdminConsoleOrgsAPIView (generics .ListAPIView ):
@@ -642,7 +642,7 @@ class TeamMembersAPIView(APIView):
642642 status .HTTP_200_OK : ListRolesWithScopeResponseSerializer (many = True ),
643643 status .HTTP_400_BAD_REQUEST : "The request parameters are invalid" ,
644644 status .HTTP_401_UNAUTHORIZED : "The user is not authenticated" ,
645- status .HTTP_403_FORBIDDEN : "The user does not have the required permisisons " ,
645+ status .HTTP_403_FORBIDDEN : "The user does not have the required permissions " ,
646646 },
647647 )
648648 @authz_permissions (
@@ -847,7 +847,7 @@ class TeamMemberAssignmentsAPIView(APIView):
847847 status .HTTP_200_OK : TeamMemberAssignmentSerializer (many = True ),
848848 status .HTTP_400_BAD_REQUEST : "The request parameters are invalid" ,
849849 status .HTTP_401_UNAUTHORIZED : "The user is not authenticated" ,
850- status .HTTP_403_FORBIDDEN : "The user does not have the required permisisons " ,
850+ status .HTTP_403_FORBIDDEN : "The user does not have the required permissions " ,
851851 },
852852 )
853853 @authz_permissions (
@@ -983,7 +983,7 @@ class AssignmentsAPIView(APIView):
983983 status .HTTP_200_OK : TeamMemberUserAssignmentSerializer (many = True ),
984984 status .HTTP_400_BAD_REQUEST : "The request parameters are invalid" ,
985985 status .HTTP_401_UNAUTHORIZED : "The user is not authenticated" ,
986- status .HTTP_403_FORBIDDEN : "The user does not have the required permisisons " ,
986+ status .HTTP_403_FORBIDDEN : "The user does not have the required permissions " ,
987987 },
988988 )
989989 @authz_permissions (
0 commit comments