From f3eda60868364a723ae88512b449aa0539b053d2 Mon Sep 17 00:00:00 2001 From: "e.stoyushko" Date: Wed, 9 Oct 2019 11:43:09 +0000 Subject: [PATCH] Update urls.py --- apps/booking/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/booking/urls.py b/apps/booking/urls.py index a86178ff..900ec8cb 100644 --- a/apps/booking/urls.py +++ b/apps/booking/urls.py @@ -7,8 +7,8 @@ app = 'booking' urlpatterns = [ path('/check/', views.CheckWhetherBookingAvailable.as_view(), name='booking-check'), path('/create/', views.CreatePendingBooking.as_view(), name='create-pending-booking'), - path('', views.UpdatePendingBooking.as_view(), name='update-pending-booking'), - path('/cancel', views.CancelBooking.as_view(), name='cancel-existing-booking'), + path('/', views.UpdatePendingBooking.as_view(), name='update-pending-booking'), + path('/cancel/', views.CancelBooking.as_view(), name='cancel-existing-booking'), path('last/', views.LastBooking.as_view(), name='last_booking-for-authorizer-user'), - path('retrieve/', views.GetBookingById.as_view(), name='retrieves-booking-by-id'), + path('retrieve//', views.GetBookingById.as_view(), name='retrieves-booking-by-id'), ]