Browse Source

add TicketList v2

blezz-tech 3 days ago
parent
commit
0a7c59da3b
2 changed files with 14 additions and 2 deletions
  1. 11 0
      api/v2/views/tickets.py
  2. 3 2
      urls.py

+ 11 - 0
api/v2/views/tickets.py

@@ -17,3 +17,14 @@ class TicketPatchAPIView(generics.UpdateAPIView):
     queryset = Ticket.objects.all()
 
 
+class TicketListAPIView(generics.ListAPIView):
+    """
+    API для получения списка тикетов
+    """
+
+    serializer_class = TicketSerializer
+    permission_classes = [
+        permissions.IsAuthenticated | HasAPIKey
+    ]
+    queryset = Ticket.objects.all()
+

+ 3 - 2
urls.py

@@ -2,7 +2,7 @@ from django.urls import path, include
 
 from tickets.api import views as apiviews
 from tickets.views import *
-from tickets.api.v2.views.tickets import TicketPatchAPIView
+from tickets.api.v2.views.tickets import TicketPatchAPIView, TicketListAPIView
 
 app_name = "tickets"
 
@@ -16,7 +16,8 @@ api_v1_patterns = [
 ]
 
 api_v2_patterns = [
-    path('ticket/<int:pk>', TicketPatchAPIView.as_view())
+    path('ticket/<int:pk>', TicketPatchAPIView.as_view()),
+    path('ticket/', TicketListAPIView.as_view()),
 ]
 
 urlpatterns = [