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

Merged
Saani merged 1 commits from feature/meetings into main 2025-12-07 13:39:00 +00:00
Showing only changes of commit 04a329e970 - Show all commits

View File

@ -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'),
]