Skip to content

Commit

Permalink
don't require authentication for field coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
lukavdplas committed Apr 25, 2024
1 parent 77372b4 commit 3224b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/visualization/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class FieldCoverageView(APIView):
Get the coverage of each field in a corpus
'''

permission_classes = [IsAuthenticated, CorpusAccessPermission]
permission_classes = [CorpusAccessPermission]

def get(self, request, *args, **kwargs):
corpus = corpus_name_from_request(request)
Expand Down

0 comments on commit 3224b07

Please sign in to comment.