Add bookings URL path to eventify urlpatterns
This commit is contained in:
17
bookings/urls.py
Normal file
17
bookings/urls.py
Normal 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"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user