From 2587a220a61c61d22bb6743238f1f25cf33fe37b Mon Sep 17 00:00:00 2001 From: behruz-dev Date: Fri, 28 Nov 2025 15:52:06 +0500 Subject: [PATCH] fiux --- core/apps/shared/views/contact_us.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/apps/shared/views/contact_us.py b/core/apps/shared/views/contact_us.py index 13f0b12..d7922c8 100644 --- a/core/apps/shared/views/contact_us.py +++ b/core/apps/shared/views/contact_us.py @@ -9,7 +9,7 @@ from core.apps.shared.models import ContactUs class ContactUsApiView(generics.GenericAPIView): permission_classes = [IsAuthenticated] - queryset = ContactUs.objects.first() + queryset = ContactUs.objects.all() serializer_class = ContactUsSerializer def get(self, request):