You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
530 B
14 lines
530 B
from django.conf.urls import url, include
|
|
from rest_framework_swagger.views import get_swagger_view
|
|
|
|
schema_view = get_swagger_view(title='Skillbox LMS API')
|
|
|
|
urlpatterns = [
|
|
url(r'courses/', include('courses.urls')),
|
|
url(r'users/', include('access.urls', namespace='users')),
|
|
url(r'library/', include('library.urls')),
|
|
url(r'finance/', include('finance.urls')),
|
|
url(r'storage/', include('storage.urls')),
|
|
url(r'progress/', include('progress.urls')),
|
|
# url(r'^docs/$', schema_view, name='api-docs'),
|
|
]
|
|
|