|
|
@@ -5,6 +5,7 @@ from drf_yasg.views import get_schema_view |
|
|
|
from drf_yasg import openapi |
|
|
|
from client import urls as clientUrls |
|
|
|
from employee import urls as employeeUrls |
|
|
|
from project import urls as projectUrls |
|
|
|
|
|
|
|
|
|
|
|
schema_view = get_schema_view( |
|
|
@@ -29,7 +30,8 @@ urlpatterns = [ |
|
|
|
path('redoc/', schema_view.with_ui('redoc', cache_timeout=0), name='schema-redoc'), |
|
|
|
path('api/', include([ |
|
|
|
path('', include(clientUrls)), |
|
|
|
path('', include(employeeUrls)) |
|
|
|
path('', include(employeeUrls)), |
|
|
|
path('', include(projectUrls)) |
|
|
|
])) |
|
|
|
])), |
|
|
|
] |