From 04a329e970376a968e4aad2cfbe2a1d9442144ca Mon Sep 17 00:00:00 2001 From: saani Date: Sun, 7 Dec 2025 13:38:17 +0000 Subject: [PATCH] feat: update Swagger UI endpoint paths to include 'yoursoftwaredevelopers' --- booking_system/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/booking_system/urls.py b/booking_system/urls.py index fe4bd3d..90ac7a1 100644 --- a/booking_system/urls.py +++ b/booking_system/urls.py @@ -10,6 +10,6 @@ urlpatterns = [ path('', api_root, name='api-root'), # Swagger UI endpoints - path('api/schema/', SpectacularAPIView.as_view(), name='schema'), - path('api/docs/', SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'), + path('api/schema/yoursoftwaredevelopers', SpectacularAPIView.as_view(), name='schema'), + path('api/docs/yoursoftwaredevelopers/', SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'), ] \ No newline at end of file -- 2.39.5