urls.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. from django.urls import path, include
  2. from tickets.api import views as apiviews
  3. from tickets.views import *
  4. from tickets.api.v2.views.tickets import TicketPatchAPIView, TicketListAPIView
  5. app_name = "tickets"
  6. api_v1_patterns = [
  7. path("ticket_list/", apiviews.TicketListListAPIView.as_view()),
  8. path("ticket_list/my/", apiviews.TicketListDetailAPIView.as_view(), {"my": True}),
  9. path("ticket_list/<int:pk>", apiviews.TicketListDetailAPIView.as_view()),
  10. path("ticket/", apiviews.TicketCreateAPIView.as_view()),
  11. path("ticket/<int:pk>", apiviews.TicketDetailAPIView.as_view()),
  12. path("ticket/<int:pk>/status", apiviews.TicketStatusAPIView.as_view()),
  13. ]
  14. api_v2_patterns = [
  15. path('ticket/<int:pk>', TicketPatchAPIView.as_view()),
  16. path('ticket/', TicketListAPIView.as_view()),
  17. ]
  18. urlpatterns = [
  19. path("", TicketListView.as_view(), name="ticket_list_list"),
  20. path("search/", search, name="search"),
  21. path("my_tickets/", ticket_list_detail, {"my_tickets": True}, name="my_tickets"),
  22. path("assignments/", ticket_list_detail, {"assignments": True}, name="assignments"),
  23. path("<int:pk>/", ticket_list_detail, name="ticket_list_detail"),
  24. path("<int:pk>/ticket_create/", TicketCreateView.as_view(), name="ticket_create"),
  25. path("ticket/<int:pk>/", TicketDetailView.as_view(), name="ticket_detail"),
  26. path("ticket/<int:pk>/edit", TicketEditView.as_view(), name="ticket_edit"),
  27. path("ticket/<int:pk>/delete", TicketDeleteView.as_view(), name="ticket_delete"),
  28. path("attachment/remove/<int:attachment_id>/", remove_attachment, name="remove_attachment"),
  29. path("api/", include(api_v1_patterns)),
  30. path("api/v2/", include(api_v2_patterns)),
  31. ]