From 8fd2b3ffb2269aa9377a63824cafc7eebe9f7ab7 Mon Sep 17 00:00:00 2001 From: casper moyo Date: Wed, 3 Jun 2026 10:03:09 +0200 Subject: [PATCH] chore: pems --- app/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/views.py b/app/views.py index 46f5f01..b58e3e5 100644 --- a/app/views.py +++ b/app/views.py @@ -21,7 +21,8 @@ class HsCodeUploadView(APIView): parser_classes = [MultiPartParser] - permission_classes = [IsAdminOrStaff] + authentication_classes = [] + permission_classes = [] def post(self, request): serializer = HsCodeUploadSerializer(data=request.data)