Skip to content

Commit

Permalink
Merge pull request #584 from NASA-IMPACT/583-remove-authentication-fr…
Browse files Browse the repository at this point in the history
…om-ej-endpoint

Remove authentication requirements from EJ endpoint
  • Loading branch information
CarsonDavis authored Feb 6, 2024
2 parents 9742eb8 + a7d2b0b commit fcc14d8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions environmental_justice/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from rest_framework import permissions, viewsets
from rest_framework import viewsets

from .models import EnvironmentalJusticeRow
from .serializers import EnvironmentalJusticeRowSerializer
Expand All @@ -11,7 +11,6 @@ class EnvironmentalJusticeRowViewSet(viewsets.ModelViewSet):

queryset = EnvironmentalJusticeRow.objects.all()
serializer_class = EnvironmentalJusticeRowSerializer
permission_classes = [permissions.IsAuthenticated]
http_method_names = [
"get",
]

0 comments on commit fcc14d8

Please sign in to comment.