Merge pull request 'feat: update Swagger UI endpoint paths to include 'yoursoftwaredevelopers'' (#77) from feature/meetings into main

Reviewed-on: https://gitea.blackbusinesslabs.com/ATTUNE-HEART-THERAPY/alternative-backend-service/pulls/77
This commit is contained in:
Saani 2025-12-07 13:38:59 +00:00
commit 62b9c7ff0b

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