generated from bisco/codex-bootstrap
14 lines
313 B
Python
14 lines
313 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"performances/<int:performance_id>/reservations/",
|
|
views.create_reservation,
|
|
name="api-reservation-create",
|
|
),
|
|
path("reservations/confirm/", views.confirm_reservation, name="api-reservation-confirm"),
|
|
]
|