|
@@ -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 = [
|