Skip to content

Commit

Permalink
[REFACTOR] remove permission class since there is default value for it
Browse files Browse the repository at this point in the history
  • Loading branch information
catherineeangel committed Feb 25, 2024
1 parent c3c4483 commit 4a285b4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion venue/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class PhotoRetrieveUpdateDestroyView(generics.RetrieveUpdateDestroyAPIView):
serializer_class = PhotoSerializer

class VenueStatusUpdateAPIView(APIView):
permission_classes = [IsAuthenticated]
def patch(self, request, pk):
try:
venue = Venue.objects.get(pk=pk)
Expand Down

0 comments on commit 4a285b4

Please sign in to comment.