feat: update Swagger UI endpoint paths to include 'yoursoftwaredevelopers'

This commit is contained in:
saani 2025-12-07 13:38:17 +00:00
parent ff3d135a20
commit 04a329e970

View File

@ -10,6 +10,6 @@ urlpatterns = [
path('', api_root, name='api-root'), path('', api_root, name='api-root'),
# Swagger UI endpoints # Swagger UI endpoints
path('api/schema/', SpectacularAPIView.as_view(), name='schema'), path('api/schema/yoursoftwaredevelopers', SpectacularAPIView.as_view(), name='schema'),
path('api/docs/', SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'), path('api/docs/yoursoftwaredevelopers/', SpectacularSwaggerView.as_view(url_name='schema'), name='swagger-ui'),
] ]