Add bookings URL path to eventify urlpatterns

This commit is contained in:
Vivek P Prakash
2026-01-28 16:51:43 +05:30
parent c43ea6b0c7
commit 7fee636fca
3 changed files with 319 additions and 0 deletions

17
bookings/urls.py Normal file
View File

@@ -0,0 +1,17 @@
from django.urls import path
from bookings.tickets_view.api import (
TicketCreateAPI,
TicketListAPI,
TicketUpdateAPI,
TicketDeleteAPI,
)
urlpatterns = [
path("tickets/create/", TicketCreateAPI.as_view(), name="ticket_create"),
path("tickets/list/", TicketListAPI.as_view(), name="ticket_list"),
path("tickets/update/", TicketUpdateAPI.as_view(), name="ticket_update"),
path("tickets/delete/", TicketDeleteAPI.as_view(), name="ticket_delete"),
]