Skip to content

Commit

Permalink
Add IsAuthenticated permission class
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell committed Dec 8, 2023
1 parent 96571d5 commit d7c99c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/edge_api/identities/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def delete(self, request, *args, **kwargs):
responses={200: GetEdgeIdentityOverridesSerializer()},
)
@api_view(http_method_names=["GET"])
@permission_classes([GetEdgeIdentityOverridesPermission])
@permission_classes([IsAuthenticated, GetEdgeIdentityOverridesPermission])
def get_edge_identity_overrides(
request: Request, environment_pk: int, **kwargs
) -> Response:
Expand Down

0 comments on commit d7c99c3

Please sign in to comment.